aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-03-21 18:44:54 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-03-21 18:45:09 -0700
commit0bd668fd8867b01c15f943613707b3c7eb59afff (patch)
treec98780c7a34fcd78c7738554e3efe5729e363a82 /activesupport/lib/active_support/core_ext/hash/indifferent_access.rb
parent2133044fec1e405648679779d51d2b74ce840f6c (diff)
downloadrails-0bd668fd8867b01c15f943613707b3c7eb59afff.tar.gz
rails-0bd668fd8867b01c15f943613707b3c7eb59afff.tar.bz2
rails-0bd668fd8867b01c15f943613707b3c7eb59afff.zip
Namespace HashWithIndifferentAccess
Diffstat (limited to 'activesupport/lib/active_support/core_ext/hash/indifferent_access.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/hash/indifferent_access.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb b/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb
index 9c2af9e9e0..b30e1602b6 100644
--- a/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb
+++ b/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb
@@ -2,7 +2,7 @@ require 'active_support/hash_with_indifferent_access'
class Hash
def with_indifferent_access
- hash = HashWithIndifferentAccess.new(self)
+ hash = ActiveSupport::HashWithIndifferentAccess.new(self)
hash.default = self.default
hash
end