aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/metal/helpers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_controller/metal/helpers.rb')
-rw-r--r--actionpack/lib/action_controller/metal/helpers.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/actionpack/lib/action_controller/metal/helpers.rb b/actionpack/lib/action_controller/metal/helpers.rb
index 0e3db86861..ef3b89db14 100644
--- a/actionpack/lib/action_controller/metal/helpers.rb
+++ b/actionpack/lib/action_controller/metal/helpers.rb
@@ -56,6 +56,18 @@ module ActionController
end
module ClassMethods
+ def helpers_dir
+ ActiveSupport::Deprecation.warn "ActionController::Base.helpers_dir is deprecated. " <<
+ "Please use ActionController::Base.helpers_path (which returns an array)"
+ self.helpers_path
+ end
+
+ def helpers_dir=(value)
+ ActiveSupport::Deprecation.warn "ActionController::Base.helpers_dir= is deprecated. " <<
+ "Please use ActionController::Base.helpers_path= (which is an array)"
+ self.helpers_path = Array(value)
+ end
+
def inherited(klass)
klass.class_eval { default_helper_module! unless name.blank? }
super