aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/abstract_controller.rb
Commit message (Collapse)AuthorAgeFilesLines
* Remove duplicated url_for code and move methods shared between ActionMailer ↵José Valim2010-01-071-0/+1
| | | | and ActionController up to AbstractController.
* Flip deferrable autoload conventionJoshua Peek2009-12-221-9/+7
|
* Rename the RenderingController module to just plain RenderingDavid Heinemeier Hansson2009-12-201-1/+1
|
* Add active_support/ruby/shim to the default requirements for AP componentsYehuda Katz2009-12-201-1/+1
|
* Fully expand relative rails framework paths and make sure we aren'tJoshua Peek2009-12-161-2/+6
| | | | adding any to the load path more than once.
* All AbstractController modules are deferrableJoshua Peek2009-12-121-7/+9
|
* Relocate AbstractController exceptions into their proper parent modulesJoshua Peek2009-12-121-7/+0
|
* Reorganize autoloads:Carlhuda2009-12-021-10/+15
| | | | | | | | | | | | | | | | | | | | | * A new module (ActiveSupport::Autoload) is provide that extends autoloading with new behavior. * All autoloads in modules that have extended ActiveSupport::Autoload will be eagerly required in threadsafe environments * Autoloads can optionally leave off the path if the path is the same as full_constant_name.underscore * It is possible to specify that a group of autoloads live under an additional path. For instance, all of ActionDispatch's middlewares are ActionDispatch::MiddlewareName, but they live under "action_dispatch/middlewares/middleware_name" * It is possible to specify that a group of autoloads are all found at the same path. For instance, a number of exceptions might all be declared there. * One consequence of this is that testing-related constants are not autoloaded. To get the testing helpers for a given component, require "component_name/test_case". For instance, "action_controller/test_case". * test_help.rb, which is automatically required by a Rails application's test helper, requires the test_case.rb for all active components, so this change will not be disruptive in existing or new applications.
* Extracted localized_cache.rb from ActionController, added it to ↵José Valim2009-11-011-0/+1
| | | | AbstractController and made ActionMailer use it.
* Add Orchestra instrumentation to fragment and page caching.José Valim2009-09-201-1/+0
|
* Renamed presenter to renderer, added some documentation and defined its API.José Valim2009-08-071-10/+10
|
* Move AbstractController to a top-level componentYehuda Katz2009-08-061-0/+16