aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/application.rb
Commit message (Expand)AuthorAgeFilesLines
...
* Added ability to set asset_path for enginesPiotr Sarnacki2010-09-031-9/+5
* Ensure that Rails.application.initialize! is called only oncePiotr Sarnacki2010-09-031-0/+2
* New way of generating urls for Application from Engine.Piotr Sarnacki2010-09-031-5/+2
* Fix url generation for mounted EnginePiotr Sarnacki2010-09-031-2/+8
* Pass routes via env['action_dispatch.routes'], it's needed by routes to deter...Piotr Sarnacki2010-09-031-2/+2
* Move singleton pattern to Railtie and remove Engine::Configurable and Applica...Piotr Sarnacki2010-09-031-25/+4
* Allow Engines loading its own environment file from config/environmentsPiotr Sarnacki2010-09-031-4/+0
* We don't need to add railties initlaizers in Application as there is already ...Piotr Sarnacki2010-09-031-1/+0
* Removed ActionDispatch::Static, but left empty MiddlewareStack to unify app m...Piotr Sarnacki2010-09-031-6/+0
* Engine sets routes as default rack endpoint if no endpoint was givenPiotr Sarnacki2010-09-031-4/+0
* Delegate non existing class methods to instance for EnginePiotr Sarnacki2010-09-031-5/+0
* Improve best_standards_support to use only IE=Edge in development modewycats2010-08-091-1/+1
* Add a header that tells Internet Explorer (all versions) to use the best avai...wycats2010-07-271-0/+1
* Add console hook to force ActiveRecord::Base to be loaded when console starts...José Valim2010-07-181-0/+13
* reload_routes! was still referencing old Rails::Application.José Valim2010-07-021-6/+5
* Avoid calls to Rails::Application since this is not the official API.José Valim2010-07-011-8/+4
* A few changes were done in this commit:José Valim2010-06-281-6/+1
* Move Collection responsibility from application to initializableJeremy Kemper2010-06-241-1/+1
* Speed up boot by tsorting as infrequently as possibleJeremy Kemper2010-06-241-1/+1
* renames load_(once_)paths to autoload_(once_)paths in dependencies and configXavier Noria2010-06-241-2/+2
* Alias app to build_middleware_stack for clarity.José Valim2010-06-211-0/+1
* Use the new ActiveSupport::FileUpdateChecker instead of RoutesReloader.José Valim2010-06-201-3/+10
* Improve documentation for add_lib_to_load_paths!José Valim2010-06-201-3/+16
* Add lib to load paths when application is inherited to be able to load lib co...José Valim2010-06-021-0/+11
* Remove the laziness from the middleware stack.José Valim2010-05-291-1/+27
* Removing Metal from Rails 3. wycats2010-05-291-6/+4
* Expose remaining hooks to minimize the need for a Railtie based on feedback f...José Valim2010-05-161-1/+0
* Reorganized initializers a bit to enable better hooks for common cases withou...wycats2010-05-151-4/+6
* The rake task :environment now loads config/environment.rb instead of initial...José Valim2010-04-291-2/+2
* Ensure application rake tasks and generators are loaded after the ones specif...José Valim2010-04-261-2/+2
* Rename config.cookie_secret to config.secret_token and pass it as configurati...José Valim2010-04-051-2/+9
* Merge branch 'master' into docrailswycats2010-03-261-1/+2
|\
| * Move application configuration to the application configuration object, remov...José Valim2010-03-261-0/+2
| * Move railties/builtin into libJoshua Peek2010-03-201-1/+0
* | Merge remote branch 'mainstream/master'Pratik Naik2010-03-121-6/+5
|\|
| * Aliasing class_eval makes JRuby ornery.wycats2010-03-071-1/+4
| * Don't rely on Rails.application global state in ConfigCarlhuda2010-03-031-4/+0
| * Get Railties tests passingCarlhuda2010-02-251-1/+1
| * Use ActionDispatch::Routing everywhereMartin Schürrer2010-02-211-1/+1
| * TypoMartin Schürrer2010-02-211-1/+1
* | Add docs for Railtie, Engine, Plugin and Application.José Valim2010-02-021-0/+37
|/
* Add more tests to some key points in Railties.José Valim2010-01-281-0/+4
* Refactor MetalLoader and RoutesReloader to rely less on class configuration.José Valim2010-01-281-2/+6
* Move Rails::Rack::Metal to Rails::Application::Metal and just add cascade if ...José Valim2010-01-261-0/+1
* Add tests for explicit engines.José Valim2010-01-261-4/+1
* Ensure calling a method in Rails::Application does not instantiate a void app...José Valim2010-01-261-3/+3
* Ensure all initializers are collections.José Valim2010-01-261-2/+2
* Plugins need to load before app initializersJoshua Peek2010-01-251-1/+1
* Add Rails::Application pointer to the default app to add symmetry to Foo::App...Joshua Peek2010-01-241-1/+5
* Ensure environment config has higher priority than application ones.José Valim2010-01-241-2/+0