aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/rails/app/templates/config
Commit message (Collapse)AuthorAgeFilesLines
* Load generators from both lib/rails/generators and lib/generators. Using the ↵José Valim2010-03-2319-518/+0
| | | | former since it's less obstrusive.
* Change generated code to replace faulty commentCarlhuda2010-03-041-1/+1
|
* Deprecated ActionController::Base.session_options= and ↵Carlhuda2010-03-042-8/+3
| | | | ActionController::Base.session_store= in favor of a config.session_store method (which takes params) and a config.cookie_secret variable, which is used in various secret scenarios. The old AC::Base options will continue to work with deprecation warnings.
* Fix Sam Ruby's tests and deprecation warningsCarlhuda2010-03-041-2/+2
|
* vendor/rails doesn't work anymore, remove it from the blank slate suggestionJoshua Peek2010-02-281-9/+0
|
* 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-042-29/+14
| | | | the list of railtie choices to those that make sense.
* Updated the database.yml file generated for ibm_db to the latest version of ↵Antonio Cangiano2010-02-041-11/+20
| | | | | | | | DB2 and the gem. [#3852 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Autorequire bundled libraries by defaultJeremy Kemper2010-02-031-1/+4
|
* Update rails to use the latest bundlerCarl Lerche2010-02-031-1/+1
|
* Get rid of deprecation warnings on config/environments/*José Valim2010-02-023-7/+7
|
* Update the generated Gemfile and config/boot.rb to work with bundler 0.9Carl Lerche2010-01-311-11/+14
|
* Test::Unit Railtie Carlhuda2010-01-281-0/+2
|
* Add active_model/railtie back to generated boot.rb, add models back to ↵José Valim2010-01-251-0/+2
| | | | paths, load active_support/railtie since we need it and ensure default logger is set before config.
* Merge branch 'master' into appJosé Valim2010-01-236-6/+6
|\ | | | | | | | | Conflicts: railties/lib/rails/application.rb
| * Template whitespaceJoshua Peek2010-01-226-6/+6
| |
* | Get rid of initializers global and create i18n railtie.José Valim2010-01-231-2/+2
|/
* 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-1819-0/+525
| | | | rspec:install generator, you need generators/rspec/install_generator in your load path.
* Move railties/lib/* into railties/lib/*Yehuda Katz + Carl Lerche2009-09-2418-600/+0
|
* Remove support for SQLite 2.Pratik Naik2009-08-171-19/+0
| | | | If you're still using it, please install the plugin from git://github.com/rails/sqlite2_adapter.git
* Depend on rubygems 1.3.2Michael Koziarski2009-08-091-1/+1
| | | | Also move the min_version definition up a line so it's present in the rescue block down below.
* Generator config should be commented by defaultPratik Naik2009-07-301-5/+5
|
* Change generators configuration to have a hash style.José Valim2009-07-151-18/+5
|
* Allow namespaced configuration on generators.José Valim2009-07-151-12/+14
|
* Remove generator environment until we have a gem manifest.José Valim2009-07-132-18/+19
|
* Do not clean up frameworks on generators environment, otherwise ↵José Valim2009-07-091-6/+5
| | | | initializers, gems and plugins might not be loaded properly.
* Add the new generators environment and update commands.José Valim2009-07-081-0/+19
|
* Initial scratch of model generators.José Valim2009-06-271-3/+3
|
* Change current sstructure.José Valim2009-06-2319-0/+611