aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/rails/app/templates/config/application.rb
Commit message (Collapse)AuthorAgeFilesLines
* Load generators from both lib/rails/generators and lib/generators. Using the ↵José Valim2010-03-231-51/+0
| | | | former since it's less obstrusive.
* load_path is expecting a String in the application.rb generatorThomas R. Koll2010-02-251-1/+1
| | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Autorequire default libs and those in groups named after the current Rails ↵Jeremy Kemper2010-02-041-2/+2
| | | | environment
* Move framework requires and Bundler.require from boot.rb to app.rb. Cut down ↵Jeremy Kemper2010-02-041-0/+14
| | | | the list of railtie choices to those that make sense.
* Make filter parameters based on request, so they can be modified for ↵José Valim2010-01-211-1/+1
| | | | anything in the middleware stack.
* Tidy up new filter_parameters implementation.José Valim2010-01-211-3/+2
|
* Add deprecation warning for calling filter_parameter_logging ↵Prem Sichanugrist2010-01-211-0/+4
| | | | | | ActionController::Base, and allow it to be configured in config.filter_parameters Signed-off-by: José Valim <jose.valim@gmail.com>
* Generators load path now will be Ruby load path. If you want to use ↵José Valim2010-01-181-0/+34
rspec:install generator, you need generators/rspec/install_generator in your load path.