aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/commands
Commit message (Collapse)AuthorAgeFilesLines
* replace dev.ror.com plugin url with a dummy oneVijay Dev2011-06-161-2/+2
|
* make 'rails runner' show usage when run without any optionsVijay Dev2011-06-101-0/+4
|
* Merge pull request #1356 from flippingbits/fix_engine_generatorJosé Valim2011-06-091-1/+3
|\ | | | | Fix engine's generator
| * Refactor identifying generator's destination rootStefan Sprenger2011-05-271-5/+2
| |
| * Introducing engine commandsStefan Sprenger2011-05-261-1/+6
| |
* | Fixing Rails::Server#app under Rack::URLMapGuillermo Iguaran2011-06-071-1/+1
| |
* | Remove trailing white-spacesGuillermo Iguaran2011-06-052-6/+6
|/
* Everyone receives app as argument for consistency.José Valim2011-05-251-1/+2
|
* Actually this file may be invoked directly as well with --dev.José Valim2011-05-252-1/+3
|
* Streamline generators initialization flow.José Valim2011-05-253-7/+1
|
* Move content length to the server, this brings the same behavior as in rack 1.2.José Valim2011-05-231-0/+1
|
* Merge pull request #247 from goncalossilva/performance_testJeremy Kemper2011-05-172-62/+55
|\ | | | | Performance tests improved
| * benchmarker and profiler now use the new performance testing tools (support ↵Gonçalo Silva2011-05-102-62/+55
| | | | | | | | for Rubinius and JRuby and high configurability)
* | Use all in place of find(:all)Vijay Dev2011-05-101-1/+1
|/
* Merge pull request #263 from CvX/masterJosé Valim2011-05-071-1/+1
|\ | | | | Corrected dbconsole usage message
| * Corrected dbconsole usage message.2011-04-121-1/+1
| |
* | Always flush logger at exitJason Rudolph2011-05-061-14/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Prior to this change, running code via script/runner would demonstrate different logging behavior than running the same code via a rake task. In production mode the script/runner approach would always flush the logger, but the rake-based approach would not automatically flush the logger. This discrepancy violates the principle of least surprise, and it could lead to the loss of important production logging data. This change removes special-case code in the "runner" command, and replaces it with a general solution to ensure that the logger gets flushed at exit. This solution works for "runner", "console", "server", rake tasks, and any other process that loads the Rails environment.
* | Take into account the Rack::Server :SSLEnable option when building the ↵Daniel Martin2011-05-061-1/+2
| | | | | | | | application's URL
* | Remove defined?(ActiveRecord) and use the railtie hook instead.José Valim2011-05-041-4/+0
| |
* | Fix console to accept [environment] [options] as specified in docs.Emilio Tagua2011-04-141-1/+1
| |
* | Remove `#among?` from Active SupportPrem Sichanugrist2011-04-134-4/+4
|/ | | | | | After a long list of discussion about the performance problem from using varargs and the reason that we can't find a great pair for it, it would be best to remove support for it for now. It will come back if we can find a good pair for it. For now, Bon Voyage, `#among?`.
* Change Object#either? to Object#among? -- thanks to @jamesarosen for the ↵David Heinemeier Hansson2011-04-124-4/+4
| | | | suggestion!
* Cant use inclusion in commands/application.rb as the frameworks havent all ↵David Heinemeier Hansson2011-04-111-2/+1
| | | | been required yet
* Using Object#in? and Object#either? in various placesPrem Sichanugrist2011-04-115-5/+15
| | | | There're a lot of places in Rails source code which make a lot of sense to switching to Object#in? or Object#either? instead of using [].include?.
* Moved Turn activation/dependency to railtiesDavid Heinemeier Hansson2011-03-311-1/+1
|
* Direct logging of Active Record to STDOUT so it's shown inline with the ↵David Heinemeier Hansson2011-03-311-0/+4
| | | | results in the console [DHH]
* reduce two method calls per request, 1 to method_missing and one to sendAaron Patterson2011-02-281-0/+4
|
* Drop remaining script/plugin sources referencesTim Pope2011-02-031-6/+1
| | | | | | [#3742 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Accept 'postgres' as a PostgreSQL driver name in dbconsole for non-AR ORMs ↵Akira Matsuda2011-02-011-1/+1
| | | | | | | | like DataMapper and Sequel [#6180 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* "rails dbconsole t" must not load "production" but "test"Akira Matsuda2011-01-311-1/+1
| | | | | | [#6293 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Use Thor's self.exit_on_failure? to exit whenever accessing the generators ↵Philip Arndt2011-01-291-0/+12
| | | | from the CLI and a Thor::Error is raised.
* load and prefer psych as the YAML parser when it is availableAaron Patterson2011-01-211-0/+6
|
* Don't need to support rails plugin --versionPiotr Sarnacki2010-11-161-6/+0
|
* Added 'rails plugin new' generator which generates gem plugin skeleton.Piotr Sarnacki2010-11-021-0/+16
| | | | | | This command is based on enginex gem by José Valim. It generates gem structure and ads dummy application into test/dummy. This can be used to start developing any kind of extension for rails 3.
* no need to check for nilNeeraj Singh2010-09-301-1/+1
|
* Send 'rails runner' help message to stdout instead of stderr.rohit2010-09-191-1/+1
| | | | | | [#5661 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Fix output of 'rails runner --help' [#4249 state:open]rohit2010-09-181-1/+1
|
* "rails console t" must not load "production" but "test"Akira Matsuda2010-09-021-1/+1
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Config is deprecated on 1.8.8 and 1.9.3 use RbConfigSantiago Pastorino2010-08-232-2/+2
|
* Trifling typosRaphomet2010-08-211-1/+1
| | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Add console hook to force ActiveRecord::Base to be loaded when console ↵José Valim2010-07-181-4/+1
| | | | starts avoiding reference loops.
* Allow a PID file to be specified to rails server [#5031 state:resolved]Sudara2010-07-081-0/+3
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Print proper "Usage:" messages for "rails plugin" commandAkira Matsuda2010-07-071-2/+10
| | | | | | | | | * suppress outputting "Unknown command:" when no command were specified * output the "Usage:" message when no plugin names were given [#5043 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* whitespaceAkira Matsuda2010-07-071-50/+47
| | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* ARGV.empty? is useless. If ARGV is empty, ARGV.first != "new" will always be ↵Madjo DIAPENA2010-07-041-1/+1
| | | | | | true Signed-off-by: José Valim <jose.valim@gmail.com>
* Avoid calls to Rails::Application since this is not the official API.José Valim2010-07-011-1/+1
| | | | Your application should *always* reference your application const (as Blog::Application) and Rails.application should be used just internally.
* Note that 'rails server' allows specifying mongrel, thin, etc [#4845 ↵Trevor Turk2010-06-221-1/+1
| | | | | | state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* Rails Runner now sets $0 and $PROGRAM_NAME to name of file being run [#2244 ↵rohit2010-06-221-0/+1
| | | | | | state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* Added absolute path for config.ru as well. Turns out this is also needed to ↵Ryan Duryea2010-06-201-1/+2
| | | | | | | | fix the daemon issue under ruby 1.8.7 [#4531 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* Pass rack the absolute path of server's pid fileRyan Duryea2010-06-201-1/+1
| | | | | | | | | When running as a daemon, rack will cd to "/" and paths relative to the root of the rails app aren't valid when rack is setting up. Because of this, "rails server -d" was failing silently when trying to write it's pid file Signed-off-by: José Valim <jose.valim@gmail.com>