aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/application.rb
Commit message (Collapse)AuthorAgeFilesLines
...
* Set up subscriber on initialization.José Valim2010-01-131-3/+0
|
* Run railtie and plugin initializers before app specific onesJoshua Peek2010-01-071-130/+2
|
* config.plugins should still work with an array of stringsJoshua Peek2010-01-051-3/+4
|
* MergeDavid Heinemeier Hansson2010-01-031-14/+1
|\
| * AppName::Application.root should workYehuda Katz2010-01-021-1/+1
| |
| * Rails notifications are set through Railtie in each framework.José Valim2010-01-021-13/+0
| |
* | Time zoning should be turned on by default with UTCDavid Heinemeier Hansson2010-01-031-10/+8
|/
* Some railties cleanup:Carl Lerche2009-12-311-2/+2
| | | | | | * Rename <framework>/rails.rb -> <framework>/railtie.rb * Rails::Plugin -> Rails::Railtie * Rails::Plugin::Vendored -> Rails::Plugin
* Fully remove config.frameworks in favor of requires in boot.rbCarl Lerche2009-12-311-1/+3
|
* Use the correct method for eager loading autoloadsCarl Lerche2009-12-291-1/+1
|
* Make plugins responsible for loading their own rake tasksSam Pohlenz2009-12-291-7/+1
| | | | Signed-off-by: Carl Lerche <carllerche@mac.com>
* Application object should instantiate non-vendored pluginsSam Pohlenz2009-12-291-1/+1
| | | Signed-off-by: Carl Lerche <carllerche@mac.com>
* Check to see if the plugin object responds to load_tasks (vendor/plugin/* ↵Carl Lerche2009-12-291-1/+4
| | | | does not yet) Fixes Sam Ruby's tests.
* Add the ability to have plugins load rake tasks.Carl Lerche2009-12-281-0/+5
|
* Merge remote branch 'origin/master'Carlhuda2009-12-231-64/+32
|\ | | | | | | | | Conflicts: railties/lib/rails/application.rb
| * Fix Rack::Lock middleware condition: use *unless* we allow concurrencyJeremy Kemper2009-12-231-1/+1
| |
| * Shift more responsibility from application class to its singleton instance. ↵Jeremy Kemper2009-12-231-77/+46
| | | | | | | | Treat instantiation and boot as separate steps. Use app.config rather than app.configuration.
* | Require active_support/all unless specifically requested to be left out.Carlhuda2009-12-231-0/+4
| |
* | Finish moving config.frameworks-dependent code to the framework pluginCarlhuda2009-12-231-111/+1
| |
* | Moving out some framework specific initializers into the framework libraries.Carlhuda2009-12-231-59/+7
| |
* | tests pass with requiring the frameworks in rails.rbCarlhuda2009-12-231-24/+34
|/
* Use Rack::Runtime middleware so the reported time includes the entire ↵Joshua Peek2009-12-221-0/+1
| | | | middleware stack
* Merge branch 'master' of github.com:rails/railsJoshua Peek2009-12-211-18/+11
|\ | | | | | | | | | | Conflicts: railties/test/initializer/initialize_i18n_test.rb railties/test/initializer/path_test.rb
| * Replace reopening the class with App.configure as an alias to class_evalCarlhuda2009-12-211-0/+4
| |
| * test.rb, dev.rb, and production.rb just reopen the Application class; no ↵Carlhuda2009-12-211-18/+7
| | | | | | | | more hax required
* | Update routes.rb template to use App nameJoshua Peek2009-12-211-0/+4
|/
* Give the builtin controllers their own routes.rb now that the legacy ↵David Heinemeier Hansson2009-12-211-0/+1
| | | | catch-all is gone
* Need to lazy realize middleware options so they can be modified inJoshua Peek2009-12-161-3/+3
| | | | the environment
* Add the ability for plugins to set default configuration settings.Carl Lerche2009-12-151-1/+7
|
* Procs don't call themselvesJoshua Peek2009-12-151-1/+1
| | | | Fixes dev mode reloading [#3574 state:resolved]
* Move route reloading into railtiesJoshua Peek2009-12-141-4/+45
|
* Merge branch 'master' of github.com:rails/railsJoshua Peek2009-12-021-35/+17
|\
| * Stop evalling the environment file in favor of require + setting a ↵Carlhuda2009-12-021-18/+17
| | | | | | | | Kernel#config. This will fix the bug where reopening classes caused them to be overwritten.
| * Add support for bare ActiveSupport via config.active_support.bareCarlhuda2009-12-021-15/+2
| |
| * Remove global Rails initializersCarlhuda2009-12-021-4/+0
| |
* | Move controller namespace tracking into route set so it getsJoshua Peek2009-12-021-1/+1
|/ | | | reloaded in dev mode
* Load application specific rake tasks in the application objectCarl Lerche2009-11-251-0/+2
|
* Have script/* and Rakefile use the application objectCarlhuda2009-11-241-5/+13
|
* Revert "Final steps toward clean rails "foo"; cd foo; gem bundle; ↵Jeremy Kemper2009-11-191-1/+5
| | | | | | | | script/server working" Broke stuff. This reverts commit 520b8b59110dd130c89b317b6bd65d8644c7836f.
* Final steps toward clean rails "foo"; cd foo; gem bundle; script/server workingYehuda Katz + Carl Lerche2009-11-181-5/+1
|
* Make script/server work with correct application.rbYehuda Katz2009-11-161-0/+5
|
* Refactor pluginsYehuda Katz + Carl Lerche2009-11-111-37/+13
|
* Conceptually unify instance & global initializersYehuda Katz + Carl Lerche2009-11-051-14/+31
|
* Configure generator when needed rather than during initializationJeremy Kemper2009-11-031-12/+0
|
* Pass config.generators options along when RAILS_GENERATORS is set and show ↵José Valim2009-11-031-1/+2
| | | | | | --force-plural message just once. Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Clarify date/time dependenciesJeremy Kemper2009-11-021-0/+1
|
* Tests pass againYehuda Katz2009-10-271-2/+2
|
* Remove some remnants of config.gemCarl Lerche2009-10-171-60/+5
|
* Remove config.gem in favor of using the bundler. This makes config/boot.rb ↵Carl Lerche2009-10-161-16/+0
| | | | | | obsolete. The bundler library is at: http://github.com/wycats/bundler/ and is a rubygem.
* Use Rails.initialize! where we just want to run the initializers and aren't ↵Joshua Peek2009-10-161-0/+5
| | | | concerned about the config