aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-04-15 02:34:39 -0300
committerwycats <wycats@gmail.com>2010-04-14 22:49:53 -0700
commiteb8c7b46390262261aae6bd990e908f7729723fd (patch)
tree2f0564617e5616fd79d4b1c95cb244f1a592077b /actionpack
parenta618ad358a51beead39eca3bf3ee029b66f34f73 (diff)
downloadrails-eb8c7b46390262261aae6bd990e908f7729723fd.tar.gz
rails-eb8c7b46390262261aae6bd990e908f7729723fd.tar.bz2
rails-eb8c7b46390262261aae6bd990e908f7729723fd.zip
page_cache added to the deprecated config accessor
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_controller/deprecated/base.rb9
1 files changed, 6 insertions, 3 deletions
diff --git a/actionpack/lib/action_controller/deprecated/base.rb b/actionpack/lib/action_controller/deprecated/base.rb
index b817bf42bc..8b559d4a20 100644
--- a/actionpack/lib/action_controller/deprecated/base.rb
+++ b/actionpack/lib/action_controller/deprecated/base.rb
@@ -146,12 +146,15 @@ module ActionController
extend DeprecatedBehavior
- deprecated_config_writer :session_store
deprecated_config_writer :session_options
- deprecated_config_accessor :perform_caching
- deprecated_config_accessor :relative_url_root, "relative_url_root is ineffective. Please stop using it"
+ deprecated_config_writer :session_store
+
deprecated_config_accessor :assets_dir
deprecated_config_accessor :javascripts_dir
+ deprecated_config_accessor :page_cache_directory
+ deprecated_config_accessor :page_cache_extension
+ deprecated_config_accessor :relative_url_root, "relative_url_root is ineffective. Please stop using it"
+ deprecated_config_accessor :perform_caching
deprecated_config_accessor :stylesheets_dir
delegate :consider_all_requests_local, :consider_all_requests_local=,