aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/metal/params_wrapper.rb
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2011-08-16 00:59:59 +0100
committerJon Leighton <j@jonathanleighton.com>2011-08-16 00:59:59 +0100
commit6c5f67cac15c43bafcd917c346cccfcf3fa5fb95 (patch)
tree6932752930fcc50e6799024b32d6dbc4bdd7670b /actionpack/lib/action_controller/metal/params_wrapper.rb
parent03a045b306768e12bb0f1480040aa9e93e8d6338 (diff)
downloadrails-6c5f67cac15c43bafcd917c346cccfcf3fa5fb95.tar.gz
rails-6c5f67cac15c43bafcd917c346cccfcf3fa5fb95.tar.bz2
rails-6c5f67cac15c43bafcd917c346cccfcf3fa5fb95.zip
Don't refer to ActionController::Base in the wrap_parameters initializer - use config object instead. Cuts about 15% off the load time. (#734)
Diffstat (limited to 'actionpack/lib/action_controller/metal/params_wrapper.rb')
-rw-r--r--actionpack/lib/action_controller/metal/params_wrapper.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/lib/action_controller/metal/params_wrapper.rb b/actionpack/lib/action_controller/metal/params_wrapper.rb
index 2d8afc3a78..dfc4e3d72c 100644
--- a/actionpack/lib/action_controller/metal/params_wrapper.rb
+++ b/actionpack/lib/action_controller/metal/params_wrapper.rb
@@ -121,6 +121,8 @@ module ActionController
_set_wrapper_defaults(_wrapper_options.slice(:format).merge(options), model)
end
+ alias :wrap_parameters= :wrap_parameters
+
# Sets the default wrapper key or model which will be used to determine
# wrapper key and attribute names. Will be called automatically when the
# module is inherited.