aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/application.rb
Commit message (Collapse)AuthorAgeFilesLines
...
| * Move load_generators from Rails::Application to Rails::EngineStefan Sprenger2011-05-261-12/+0
| |
* | Fixing Rails::Server#app under Rack::URLMapGuillermo Iguaran2011-06-071-0/+4
|/
* Everyone receives app as argument for consistency.José Valim2011-05-251-6/+8
|
* Streamline generators initialization flow.José Valim2011-05-251-3/+3
|
* Update generator config to support hiding namespaces and pass the app into ↵wycats2011-05-241-2/+3
| | | | generator blocks
* Move content length to the server, this brings the same behavior as in rack 1.2.José Valim2011-05-231-2/+0
|
* Make Rake::DSL methods available within Railtie rake_tasks blockPatrick Quinn2011-05-201-4/+6
| | | | Fixes incompatibility introduced by Rake 0.9.0
* Temporarily ship with ContentLength middleware.José Valim2011-05-201-1/+1
|
* Use Rack::ContentLength.José Valim2011-05-191-0/+2
|
* always enable `pp` on the Rails consoleAkira Matsuda2011-05-181-0/+1
|
* Logs should show overridden method; Issue 426David Lee2011-05-071-3/+3
|
* Move sandbox to AR and pass the sandbox as a value. This way, other ORMs ↵José Valim2011-05-041-2/+1
| | | | like Datamapper can also have their own sandboxing in rails console.
* Add static_cache_control as configuration option and set a default for test. ↵José Valim2011-05-031-1/+1
| | | | Should improve performance in acceptance tests.
* Move app initializers to sprockets railtie.José Valim2011-04-171-9/+0
|
* Make static faster as we don't have to serve multiple paths anymore.José Valim2011-04-151-1/+1
|
* Remove the ability for engines to serve assets from the public directory.José Valim2011-04-151-7/+1
|
* Booya, sprockets now works from Engines.José Valim2011-04-151-32/+8
|
* Move to app/assets in anticipation of image support being added as well. ↵David Heinemeier Hansson2011-04-131-2/+4
| | | | Also add vendor/assets to default load path
* Index sprockets environment if perform caching is enabledJoshua Peek2011-04-121-0/+1
|
* Fix assets prefix joiningJoshua Peek2011-03-301-1/+1
|
* Fix assets prefix joiningJoshua Peek2011-03-301-1/+1
|
* Unify sprockets config optionsJoshua Peek2011-03-301-11/+13
|
* Merge branch 'master' into sprocketsJoshua Peek2011-03-301-4/+13
|\ | | | | | | | | Conflicts: railties/lib/rails/application/configuration.rb
| * Add `config.force_ssl` configuration which will load `Rack::SSL` middleware ↵Prem Sichanugrist2011-03-271-4/+13
| | | | | | | | | | | | | | | | if set to true This will allow user to be able to force all requests to be under HTTPS protocol. This commit was a request from DHH. Special thanks to Josh Peek as well for making `Rack::SSL`.
* | Rename option to config.asset_pipelineJoshua Peek2011-03-291-11/+13
| |
* | Move sprockets initializers back to applicationJoshua Peek2011-03-291-0/+27
| |
* | Add route for assetsJoshua Peek2011-03-281-34/+0
| |
* | Change static root to /publicJoshua Peek2011-03-221-1/+1
| |
* | Move app/javascripts and app/stylesheets under app/assetsJoshua Peek2011-03-221-6/+6
| |
* | Remove ensure_fresh_assets flagJoshua Peek2011-03-221-1/+0
| |
* | Assign sprockets static rootJoshua Peek2011-03-221-0/+1
| |
* | Add sprockets environment to ApplicationJoshua Peek2011-03-211-0/+34
|/
* Always use ActionDispatch::ShowExceptions middleware [#6462 state:resolved]Prem Sichanugrist2011-02-251-1/+1
| | | | This will make sure the application will raise `ActionController::RoutingError` in case "X-Cascade: pass" header was set, usually when there's no route match.
* Make sure that we set `env["action_dispatch.show_exceptions"]`Prem Sichanugrist2011-02-251-1/+2
| | | | This has been used by `show_exception` middleware even the setting wasn't get passed to `env` hash.
* Application's assets should have higher priority than engine's onesPiotr Sarnacki2011-02-091-1/+4
| | | | [#6388 state:resolved]
* Replace AD::Callbacks.to_prepare with AD::Reloader.to_prepareJohn Firebaugh2010-12-201-1/+1
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Introduce ActionDispatch::ReloaderJohn Firebaugh2010-12-201-0/+1
| | | | | | | | | | | | Based on the implementation on the 2-3-stable branch, patches by Hongli Lai <hongli@phusion.nl>, and helpful suggestions from José Valim. Hongli Lai's patches included locking around the request cycle; this is now handled by Rack::Lock (https://github.com/rack/rack/issues/issue/87/). [#2873] Signed-off-by: José Valim <jose.valim@gmail.com>
* Ensure asset_path defaults to nil for applicationJosé Valim2010-12-091-0/+4
|
* Remove unused Configurable in Rails::Engine and Rails::Application. Remove ↵zhengjia2010-11-111-1/+0
| | | | | | unnecessary railties load path in cli [#5871 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* replace if ! with unlessNeeraj Singh2010-10-171-1/+1
| | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Makes this code a bit more clearSantiago Pastorino2010-10-081-3/+3
|
* Remove the final initializers since initializers += will return it anyway. ↵Ryan Bigg2010-10-081-1/+0
| | | | | | [#3892 state:resolved] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Provide a cleaner syntax for paths configuration that does not rely on ↵José Valim2010-10-061-1/+1
| | | | method_missing.
* Move ETag and ConditionalGet logic from AD::Response to the middleware stack.José Valim2010-10-031-1/+3
|
* reload_routes! is part of the public API and should not be removed.José Valim2010-10-021-0/+4
|
* Moved Rails::RoutesReloader to Rails::Application::RoutesReloaderPiotr Sarnacki2010-09-301-2/+2
|
* Move routes_reloader to a class: RoutesReloaderPiotr Sarnacki2010-09-301-22/+2
|
* Properly reload routes defined in class definitionPiotr Sarnacki2010-09-301-5/+16
| | | | | | | | | | | | | | | | | Sometimes it's easier to define routes inside Engine or Application class definition (e.g. one file applications). The problem with such case is that if there is a plugin that has config/routes.rb file, it will trigger routes reload on application. Since routes definition for application is not in config/routes.rb file routes_reloader will fail to reload application's routes properly. With this commit you can pass routes definition as a block to routes method, which will allow to properly reload it: class MyApp::Application < Rails::Application routes do resources :users end end
* Only add Rack::Cache to the middleware stack if ↵Sparky2010-09-151-2/+4
| | | | config.action_controller.perform_caching is set.
* First pass at Rack::Cachewycats2010-09-131-0/+3
|