aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-04-22 14:50:46 -0300
committerJeremy Kemper <jeremy@bitsweat.net>2010-04-22 11:02:15 -0700
commit19cecc907f2c97458519f103cbb967cf8dda5716 (patch)
tree776aeee8d180b71efcc1d142aeb1075c6e3304e0 /activesupport/lib/active_support
parentc976784381d694df8090ad8a16c2648e93a2bd12 (diff)
downloadrails-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>
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r--activesupport/lib/active_support/hash_with_indifferent_access.rb2
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.