Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make sure that generator's default banner is showing its namespace | Prem Sichanugrist | 2011-01-01 | 1 | -1/+1 |
| | | | | This will make `rails g rspec:install --help` shows "rails generate rspec:install [options]" and not "rails generate install [options]" | ||||
* | Deletes trailing whitespaces (over text files only find * -type f -exec sed ↵ | Santiago Pastorino | 2010-08-14 | 1 | -1/+1 |
| | | | | 's/[ \t]*$//' -i {} \;) | ||||
* | Fixes usage message when running rails without --dev on a cloned rails repo | Santiago Pastorino | 2010-07-26 | 1 | -1/+1 |
| | |||||
* | Changed `ruby /path/to/rails myapp --dev` to `ruby /path/to/rails new myapp ↵ | Jeff Kreeftmeijer | 2010-06-21 | 1 | -1/+1 |
| | | | | | | --dev` in the "Thor is not avalable" message. [#4915 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | Removing Metal from Rails 3. | wycats | 2010-05-29 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | If you have existing Metals, you have a few options: * if your metal behaves like a middleware, add it to the middleware stack via config.middleware.use. You can use methods on the middleware stack to control exactly where it should go * if it behaves like a Rack endpoint, you can link to it in the router. This will result in more optimal routing time, and allows you to remove code in your endpoint that matches specific URLs in favor of the more powerful handling in the router itself. For the future, you can use ActionController::Metal to get a very fast controller with the ability to opt-in to specific controller features without paying the penalty of the full controller stack. Since Rails 3 is closer to Rack, the Metal abstraction is no longer needed. | ||||
* | Update generators to use thor 0.13.6 with simpler source_root handling. | José Valim | 2010-04-30 | 1 | -16/+22 |
| | |||||
* | Load generators from both lib/rails/generators and lib/generators. Using the ↵ | José Valim | 2010-03-23 | 1 | -1/+1 |
| | | | | former since it's less obstrusive. | ||||
* | No -rubygems needed | wycats | 2010-03-22 | 1 | -1/+1 |
| | |||||
* | Provide a better error if thor is missing | wycats | 2010-03-22 | 1 | -1/+9 |
| | |||||
* | fix usage examples and more to use new invocations | RomD | 2010-02-06 | 1 | -4/+4 |
| | | | | Signed-off-by: Carl Lerche <carllerche@mac.com> | ||||
* | Add config.generators.templates to provide alternative paths for template ↵ | José Valim | 2010-02-06 | 1 | -2/+1 |
| | | | | lookup. | ||||
* | Make bin/rails call rails/commands/application, fix generators usage and ↵ | José Valim | 2010-02-03 | 1 | -1/+1 |
| | | | | update .gitignores. | ||||
* | No more vendored thor. | José Valim | 2010-02-03 | 1 | -1/+1 |
| | |||||
* | Generators load path now will be Ruby load path. If you want to use ↵ | José Valim | 2010-01-18 | 1 | -1/+1 |
| | | | | rspec:install generator, you need generators/rspec/install_generator in your load path. | ||||
* | Automatically remove :generators: from namespaces. | José Valim | 2010-01-18 | 1 | -1/+1 |
| | |||||
* | Ensure generators can be invoked by their shortcut and remove attr_reader tasks. | José Valim | 2010-01-18 | 1 | -0/+4 |
| | |||||
* | No more hacks to ensure generators are executed inside Rails.root. | José Valim | 2010-01-07 | 1 | -17/+0 |
| | |||||
* | Create Rails::Generators::TestCase. | José Valim | 2010-01-03 | 1 | -1/+1 |
| | |||||
* | Use regexp in lookups instead of traversing namespaces. This removes the ↵ | José Valim | 2010-01-03 | 1 | -28/+32 |
| | | | | need of special cases. | ||||
* | Contortions to work around brittle naming dependency | Jeremy Kemper | 2009-11-09 | 1 | -27/+25 |
| | |||||
* | Update Rails Generators to use Thor 0.12.0. | José Valim | 2009-11-08 | 1 | -0/+4 |
| | | | | Signed-off-by: Yehuda Katz <wycats@mobile-166-129-219-135.mycingular.net> | ||||
* | Fix generators tests that expect a class name | Jeremy Kemper | 2009-11-05 | 1 | -7/+10 |
| | |||||
* | Ensure that generators can be invoked from any directory. | José Valim | 2009-11-02 | 1 | -0/+17 |
| | | | | Signed-off-by: Engine Yard <engineyard@Engine-Yards-MacBook-Pro.local> | ||||
* | CI breakage | Yehuda Katz | 2009-11-02 | 1 | -17/+0 |
| | | | | This reverts commit a288b74f1c75c6f100de7611a5093a421f1ad6d1. | ||||
* | Generators should use Rails.root instead of Dir.pwd [#3408 status:resolved] | José Valim | 2009-10-28 | 1 | -0/+17 |
| | | | | Signed-off-by: Yehuda Katz <wycats@gmail.com> | ||||
* | Deprecate RAILS_ROOT in favor of Rails.root (which proxies to the ↵ | Carl Lerche | 2009-10-16 | 1 | -2/+2 |
| | | | | application's object root) | ||||
* | Move railties/lib/* into railties/lib/* | Yehuda Katz + Carl Lerche | 2009-09-24 | 1 | -0/+349 |