diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2010-04-22 14:50:46 -0300 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2010-04-22 11:02:15 -0700 |
commit | 19cecc907f2c97458519f103cbb967cf8dda5716 (patch) | |
tree | 776aeee8d180b71efcc1d142aeb1075c6e3304e0 | |
parent | c976784381d694df8090ad8a16c2648e93a2bd12 (diff) | |
download | rails-19cecc907f2c97458519f103cbb967cf8dda5716.tar.gz rails-19cecc907f2c97458519f103cbb967cf8dda5716.tar.bz2 rails-19cecc907f2c97458519f103cbb967cf8dda5716.zip |
HWIA relies on Hash#symbolize_keys and #stringify_keys extensions.
Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
-rw-r--r-- | activesupport/lib/active_support/hash_with_indifferent_access.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/hash_with_indifferent_access.rb b/activesupport/lib/active_support/hash_with_indifferent_access.rb index 6b7a897cf2..f64f0f44cc 100644 --- a/activesupport/lib/active_support/hash_with_indifferent_access.rb +++ b/activesupport/lib/active_support/hash_with_indifferent_access.rb @@ -1,3 +1,5 @@ +require 'active_support/core_ext/hash/keys' + # This class has dubious semantics and we only have it so that # people can write params[:key] instead of params['key'] # and they get the same value for both keys. |