aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/hash.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-03-28 23:46:54 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-03-28 23:46:54 -0700
commit9130c3147a8d23097d384208e31161928f16156b (patch)
tree1a830785b4f647943c1e2303f8c70b644a2b6190 /activesupport/lib/active_support/core_ext/hash.rb
parentdad8dabd31fb4808769272a4ba3380c1a9a30548 (diff)
downloadrails-9130c3147a8d23097d384208e31161928f16156b.tar.gz
rails-9130c3147a8d23097d384208e31161928f16156b.tar.bz2
rails-9130c3147a8d23097d384208e31161928f16156b.zip
Convert Hash conversions extension module to class reopen
Diffstat (limited to 'activesupport/lib/active_support/core_ext/hash.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/hash.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/core_ext/hash.rb b/activesupport/lib/active_support/core_ext/hash.rb
index e0093fe194..501483498d 100644
--- a/activesupport/lib/active_support/core_ext/hash.rb
+++ b/activesupport/lib/active_support/core_ext/hash.rb
@@ -1,3 +1,4 @@
+require 'active_support/core_ext/hash/conversions'
require 'active_support/core_ext/hash/deep_merge'
require 'active_support/core_ext/hash/diff'
require 'active_support/core_ext/hash/except'
@@ -5,6 +6,3 @@ require 'active_support/core_ext/hash/indifferent_access'
require 'active_support/core_ext/hash/keys'
require 'active_support/core_ext/hash/reverse_merge'
require 'active_support/core_ext/hash/slice'
-
-require 'active_support/core_ext/util'
-ActiveSupport.core_ext Hash, %w(conversions)