Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | stop mutating ARGV | Aaron Patterson | 2013-10-30 | 1 | -2/+2 |
| | |||||
* | rename AppPreparer | Aaron Patterson | 2013-10-30 | 1 | -1/+1 |
| | | | | | AppPreparer doesn't actually prepare applications, it scrubs ARGV. Let's also get the class under test while we're at it | ||||
* | Creating a class to handle preparing ARGV. | wangjohn | 2013-07-09 | 1 | -27/+1 |
| | | | | | | Before the AppGenerator is started, ARGV needs to be modified to correctly account for some things. I'm extracting these out into their own class. | ||||
* | Revert more Rails.version changes | Rafael Mendonça França | 2013-04-01 | 1 | -1/+1 |
| | | | | Related with ed8df3ff018d17fad123e48c7cb907332e72e7dc | ||||
* | remove references to *::VERSION, replace with *.version | Charlie Somerville | 2013-03-21 | 1 | -1/+1 |
| | |||||
* | Use --rc= instead of --rc | robertomiranda | 2013-02-04 | 1 | -2/+6 |
| | |||||
* | Refactor --rc option | Guillermo Iguaran | 2013-02-02 | 1 | -6/+1 |
| | |||||
* | Add --rc option to support the load of a custom rc file | Amparo Luna | 2013-02-01 | 1 | -1/+7 |
| | |||||
* | Prefer File.read over File.open.read | Akira Matsuda | 2013-02-01 | 1 | -1/+1 |
| | |||||
* | Add --no-rc option to skip the loading of railsrc file | Amparo Luna | 2013-01-31 | 1 | -6/+8 |
| | |||||
* | Explicit options should have precedence over railsrc on the `rails new` | Rafael Mendonça França | 2012-12-24 | 1 | -2/+1 |
| | | | | | | command Closes #8545 | ||||
* | update Rails::Generators docs [ci skip] | Francesco Rodriguez | 2012-10-07 | 1 | -1/+1 |
| | |||||
* | require "rubygems" is obsolete in Ruby 1.9.3 | Kornelius Kalnbach | 2012-05-13 | 1 | -1/+0 |
| | |||||
* | Print information about .railsrc to users | Guillermo Iguaran | 2011-10-02 | 1 | -0/+1 |
| | |||||
* | Read extra args for 'rails new' from ~/.railsrc | Guillermo Iguaran | 2011-10-02 | 1 | -0/+7 |
| | |||||
* | Actually this file may be invoked directly as well with --dev. | José Valim | 2011-05-25 | 1 | -1/+0 |
| | |||||
* | Cant use inclusion in commands/application.rb as the frameworks havent all ↵ | David Heinemeier Hansson | 2011-04-11 | 1 | -2/+1 |
| | | | | been required yet | ||||
* | Using Object#in? and Object#either? in various places | Prem Sichanugrist | 2011-04-11 | 1 | -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 Arndt | 2011-01-29 | 1 | -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 DIAPENA | 2010-07-04 | 1 | -1/+1 |
| | | | | | | true Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Changing command line API from 'rails blog' to 'rails new blog'. | Mikel Lindsaar | 2010-06-04 | 1 | -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 AM | Carlhuda | 2010-04-29 | 1 | -1/+1 |
| | |||||
* | bin/rails should use the new app generator path. | José Valim | 2010-03-23 | 1 | -1/+1 |
| | |||||
* | Automatically require rubygems when --dev flag is given. | José Valim | 2010-02-04 | 1 | -1/+2 |
| | |||||
* | Removed all the default commands in script/* and replaced them with ↵ | David Heinemeier Hansson | 2010-02-02 | 1 | -0/+12 |
script/rails and a rails command that'll act the same when run from within the app [DHH] |