aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/configuration.rb
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix spacing on frameworks error messageJeffrey Hardy2010-01-061-2/+2
|
* Trash string coercion rack hacksJoshua Peek2010-01-041-1/+0
|
* Default middleware stack needs to be available at configuration timeJoshua Peek2010-01-041-3/+17
|
* Time zoning should be turned on by default with UTCDavid Heinemeier Hansson2010-01-031-0/+4
|
* Some railties cleanup:Carl Lerche2009-12-311-4/+4
| | | | | | * Rename <framework>/rails.rb -> <framework>/railtie.rb * Rails::Plugin -> Rails::Railtie * Rails::Plugin::Vendored -> Rails::Plugin
* Raise a helpful error if config.frameworks is usedCarl Lerche2009-12-311-0/+7
|
* Fully remove config.frameworks in favor of requires in boot.rbCarl Lerche2009-12-311-20/+1
|
* Revert "Add config.action_controller.include behavior to plugins."Jeremy Kemper2009-12-301-19/+1
| | | | | | | | This reverts commit 7e8b7f46bfc086a36db996420fbee93348c5268e. Conflicts: railties/lib/rails/plugin.rb
* Add config.action_controller.include behavior to plugins.José Valim2009-12-271-1/+19
|
* Moving out some framework specific initializers into the framework libraries.Carlhuda2009-12-231-11/+14
|
* Give the builtin controllers their own routes.rb now that the legacy ↵David Heinemeier Hansson2009-12-211-0/+4
| | | | catch-all is gone
* Add the ability for plugins to set default configuration settings.Carl Lerche2009-12-151-15/+53
|
* Fix warnings in railties configuration and initializeableJoshua Peek2009-12-141-9/+13
|
* Update rails application root detection to take into consideration a ↵Carlhuda2009-11-231-1/+1
| | | | callstack that includes the rack library
* Refactor pluginsYehuda Katz + Carl Lerche2009-11-111-30/+3
|
* Pass config.generators options along when RAILS_GENERATORS is set and show ↵José Valim2009-11-031-5/+9
| | | | | | --force-plural message just once. Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Duplicate AS code no longer neededYehuda Katz + Carl Lerche2009-10-271-3/+4
|
* Remove some remnants of config.gemCarl Lerche2009-10-171-20/+1
|
* Deprecate RAILS_ROOT in favor of Rails.root (which proxies to the ↵Carl Lerche2009-10-161-23/+11
| | | | application's object root)
* Renamed Orchestra to Notifications once again [#3321 state:resolved]José Valim2009-10-151-4/+4
|
* Configure Orchestra on initialization.José Valim2009-10-151-0/+8
|
* Have Rails.root be based off of config.ruCarl Lerche2009-10-141-47/+67
|
* Finish porting over the initializers to the app object and fix all the testsCarl Lerche2009-10-141-90/+83
|
* Create separate middleware stack for initializerJoshua Peek2009-09-261-3/+2
|
* Enable static asset server by defaultJoshua Peek2009-09-261-1/+6
|
* Initializer middleware helper needs to require actioncontrollerJoshua Peek2009-08-311-0/+1
|
* Add a .tmp pathYehuda Katz2009-08-091-1/+2
|
* Change generators configuration to have a hash style.José Valim2009-07-151-29/+16
|
* Allow nil and false to be given as configuration values and avoid creating ↵José Valim2009-07-151-1/+1
| | | | unecessary hashes.
* Allow namespaced configuration on generators.José Valim2009-07-151-21/+32
|
* Generators are configured on initialization if RAILS_ENV=generators.José Valim2009-07-081-19/+20
|
* Added config.generators with tests.José Valim2009-07-081-1/+48
|
* Reapply Rails::Application::Path tweaksYehuda Katz + Carl Lerche2009-07-061-27/+13
| | | | | Reapplies: a4bdc00fec623f72592e663e6d7830eea0bc6ea4 3c1dab72259d01c6335bf359d7f9b3af69d45bb4
* Revert "Compact the way application paths are defined"Pratik Naik2009-07-031-13/+27
| | | | | | This reverts commit 940aad225af0b963f435a0bf015daece2218d502. Reason : The server does not start
* Compact the way application paths are definedYehuda Katz + Carl Lerche2009-07-021-27/+13
|
* Add #concat to Rails::Application::PathCarl Lerche2009-06-301-1/+1
|
* Stop the initializer from blowing up when builtin_directories is emptyCarl Lerche2009-06-301-1/+1
|
* Starting to replace scattered path configuration settings with the path objectYehuda Katz + Carl Lerche2009-06-261-2/+31
|
* Try speeding up rails bootingYehuda Katz + Carl Lerche2009-06-251-1/+0
|
* Separate Rails module methods, the config object, and the initializer into ↵Yehuda Katz + Carl Lerche2009-06-231-0/+239
separate files.