aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/commands/application.rb
Commit message (Collapse)AuthorAgeFilesLines
* Print information about .railsrc to usersGuillermo Iguaran2011-10-021-0/+1
|
* Read extra args for 'rails new' from ~/.railsrcGuillermo Iguaran2011-10-021-0/+7
|
* Actually this file may be invoked directly as well with --dev.José Valim2011-05-251-1/+0
|
* 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-111-1/+3
| | | | 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?.
* 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.
* 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>
* 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>
* Move ActionMailer generator to AMCarlhuda2010-04-291-1/+1
|
* bin/rails should use the new app generator path.José Valim2010-03-231-1/+1
|
* Automatically require rubygems when --dev flag is given.José Valim2010-02-041-1/+2
|
* Removed all the default commands in script/* and replaced them with ↵David Heinemeier Hansson2010-02-021-0/+12
script/rails and a rails command that'll act the same when run from within the app [DHH]