aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/commands
Commit message (Collapse)AuthorAgeFilesLines
* "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>
* remove executable permission from files that don't need it. [#4802 ↵rohit2010-06-201-0/+0
| | | | | | state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* Changing command line API from 'rails blog' to 'rails new blog'.Mikel Lindsaar2010-06-041-1/+6
| | | | | | | | | | Also removed the limitation of not being able to call your new server any of the rails commands (generate, server, dbconsole, console etc) as there is no longer any ambiguity here. http://rails.lighthouseapp.com/projects/8994/tickets/4665 Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
* Still copy application configuration to generator even if they are required ↵José Valim2010-06-022-0/+2
| | | | earlier. Also tidy up the guide a little bit.
* add support for mysql2 adapter to dbconsoleBrian Lopez2010-05-041-2/+2
| | | | | | [#4532 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Move ActionMailer generator to AMCarlhuda2010-04-291-1/+1
|
* The rake task :environment now loads config/environment.rb instead of ↵José Valim2010-04-293-1/+2
| | | | initializing the application on its own. This fixes [#4492 state:resolved] and also avoids the application being initialized twice in some rake tasks.
* Use Config::CONFIG['host_os'] instead of RUBY_PLATFORM [#4477 state:resolved]Anil Wadghule2010-04-261-1/+2
| | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Make db console work for all versions of ruby on Windows.unknown2010-04-261-1/+2
| | | | | | [#3999 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Fix regexp typoJeremy Kemper2010-04-131-1/+1
|
* Make RUBY_PLATFORM windows regex consistent [#4345 state:resolved]Anil Wadghule2010-04-121-1/+1
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Create tmp directories if required before starting server [#3907 state:resolved]Ravinder Singh2010-03-311-0/+5
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Make script/dbconsole work with oracle (sqlplus ↵Edgars Beigarts2010-03-261-0/+12
| | | | | | <username>[/<password>][@<connect_identifier>]) [#3773 state:resolved]
* bin/rails should use the new app generator path.José Valim2010-03-231-1/+1
|
* Fix server environment [#3877 status:resolved]Simo Niemelä2010-02-101-4/+11
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Add default values to output of 'rails server -h', hardcoded as Rack::Server ↵Prem Sichanugrist2010-02-101-3/+3
| | | | | | did since options doesn't have any data at the time of parsing arguments [#3910 status:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* Add missing -h/--help flag to several rails command [#3909 status:resolved]Prem Sichanugrist2010-02-105-9/+9
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* rails runner loads environment after parsing command-line optionsJeremy Kemper2010-02-091-0/+2
|
* fix usage examples and more to use new invocationsRomD2010-02-062-7/+7
| | | | Signed-off-by: Carl Lerche <carllerche@mac.com>
* Fix 'rails server -h' double help banner. Correct its usage line. [#3874 ↵Henrik N2010-02-061-1/+4
| | | | | | status:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* Automatically require rubygems when --dev flag is given.José Valim2010-02-041-1/+2
|
* Make bin/rails call rails/commands/application, fix generators usage and ↵José Valim2010-02-031-67/+0
| | | | update .gitignores.
* Adding 'db' as a shortcut for dbconsole to the rails commandMikel Lindsaar2010-02-031-8/+9
|
* Rename usage path to command to just the command nameDavid Heinemeier Hansson2010-02-024-4/+4
|
* Wups, need the application command in there tooDavid Heinemeier Hansson2010-02-021-0/+2
|
* Fix rails serverDavid Heinemeier Hansson2010-02-021-1/+1
|
* Added "rake about" as a replacement for script/about [DHH]David Heinemeier Hansson2010-02-021-2/+0
|
* Boot path has already been required, dont need it againDavid Heinemeier Hansson2010-02-021-5/+0
|
* Removed all the default commands in script/* and replaced them with ↵David Heinemeier Hansson2010-02-022-0/+81
| | | | script/rails and a rails command that'll act the same when run from within the app [DHH]
* Automatically configure generators if application is defined.José Valim2010-01-292-2/+0
|
* Move console stuff to its own directory.José Valim2010-01-231-4/+4
|
* Default to sync instrumentation.José Valim2010-01-211-10/+1
|
* Make script/dbconsole work again [#3690 state:resolved]Sam Granieri2010-01-161-2/+2
| | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Fix an issue where log was not being tailed in the first request.José Valim2010-01-151-1/+14
|
* LogTailer should be invoked after all logs in threads were flushed.José Valim2010-01-151-5/+1
|
* Get everyone running on Rails.env and fix the broken environment settings ↵David Heinemeier Hansson2010-01-114-12/+13
| | | | for script/console and script/dbconsole
* Have to remove the environment name from ARGV or IRB will freak outDavid Heinemeier Hansson2010-01-091-1/+1
|
* No more hacks to ensure generators are executed inside Rails.root.José Valim2010-01-072-2/+2
|