From 0ab2ba336f2b094a4235b54a1b17f8bef3fe3b2b Mon Sep 17 00:00:00 2001 From: Santiago Pastorino Date: Tue, 13 Apr 2010 20:15:23 -0300 Subject: [PATCH] config.perform_caching added to the deprecated config accessor [#4383 state:committed] Signed-off-by: Jeremy Kemper --- actionpack/lib/action_controller/deprecated/base.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/actionpack/lib/action_controller/deprecated/base.rb b/actionpack/lib/action_controller/deprecated/base.rb index 5d9cfb153a..b817bf42bc 100644 --- a/actionpack/lib/action_controller/deprecated/base.rb +++ b/actionpack/lib/action_controller/deprecated/base.rb @@ -148,6 +148,7 @@ def verify(*args) 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_accessor :assets_dir deprecated_config_accessor :javascripts_dir @@ -156,4 +157,4 @@ def verify(*args) delegate :consider_all_requests_local, :consider_all_requests_local=, :allow_concurrency, :allow_concurrency=, :to => :"self.class" end -end \ No newline at end of file +end -- GitLab