aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/deprecated
Commit message (Collapse)AuthorAgeFilesLines
* Deprecate cookie_verifier_secret in favor of config.cookie_secret allowing ↵José Valim2010-03-311-0/+12
| | | | signed cookies to work again.
* Fixes typo (ht: Claudio Poli) [#4107 state:closed]wycats2010-03-261-1/+1
|
* Typo in config.action_dispatchwycats2010-03-071-1/+1
|
* Deprecated ActionController::Base.session_options= and ↵Carlhuda2010-03-041-2/+15
| | | | ActionController::Base.session_store= in favor of a config.session_store method (which takes params) and a config.cookie_secret variable, which is used in various secret scenarios. The old AC::Base options will continue to work with deprecation warnings.
* Move stuff from compatibility.rb to deprecated.rbCarlhuda2010-03-041-0/+118
|
* Cleanup deprecation notices.Joshua Peek2010-01-181-1/+1
|
* Get rid of prepare_each_request, since now it's a middleware initialization ↵José Valim2010-01-171-3/+0
| | | | parameter.
* Move Dispatcher setup to Railties and add instrumentation hook.José Valim2010-01-151-0/+31
|
* Allow autoloads to opt out of eager loadingJoshua Peek2009-12-121-2/+0
|
* Reorganize autoloads:Carlhuda2009-12-021-0/+2
| | | | | | | | | | | | | | | | | | | | | * 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.
* Move integration test runner into ActionDispatchJoshua Peek2009-09-232-0/+3