diff options
author | Xavier Noria <fxn@hashref.com> | 2010-03-28 13:26:13 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-03-28 13:26:13 +0200 |
commit | 105f9b8154bbee88b45e0bb9de949206cbc1ba02 (patch) | |
tree | 7be169d344be7e55a183b272e31bef8083b6464c /actionpack/lib/action_dispatch | |
parent | 3b1c69d2dd2b24a29e4443d7dc481589320a3f3e (diff) | |
download | rails-105f9b8154bbee88b45e0bb9de949206cbc1ba02.tar.gz rails-105f9b8154bbee88b45e0bb9de949206cbc1ba02.tar.bz2 rails-105f9b8154bbee88b45e0bb9de949206cbc1ba02.zip |
adds missing requires for Object#duplicable?
Diffstat (limited to 'actionpack/lib/action_dispatch')
-rw-r--r-- | actionpack/lib/action_dispatch/http/filter_parameters.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_dispatch/http/filter_parameters.rb b/actionpack/lib/action_dispatch/http/filter_parameters.rb index e42b4d09b0..152aaa2e67 100644 --- a/actionpack/lib/action_dispatch/http/filter_parameters.rb +++ b/actionpack/lib/action_dispatch/http/filter_parameters.rb @@ -1,5 +1,6 @@ require 'active_support/core_ext/object/blank' require 'active_support/core_ext/hash/keys' +require 'active_support/core_ext/object/duplicable' module ActionDispatch module Http |