aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/hash.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-03-21 04:00:51 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-03-21 04:39:53 -0700
commitb4a1718832c70005e45a930d5106857cf882e147 (patch)
treeb1a5fd3f934fd7142e26190a1192fbe371e7250b /activesupport/lib/active_support/core_ext/hash.rb
parentbc4e2aa931209e4d91779f15dbbf59b7db045dca (diff)
downloadrails-b4a1718832c70005e45a930d5106857cf882e147.tar.gz
rails-b4a1718832c70005e45a930d5106857cf882e147.tar.bz2
rails-b4a1718832c70005e45a930d5106857cf882e147.zip
Convert hash extension modules to class reopens
Diffstat (limited to 'activesupport/lib/active_support/core_ext/hash.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/hash.rb10
1 files changed, 9 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/hash.rb b/activesupport/lib/active_support/core_ext/hash.rb
index d940812d34..e0093fe194 100644
--- a/activesupport/lib/active_support/core_ext/hash.rb
+++ b/activesupport/lib/active_support/core_ext/hash.rb
@@ -1,2 +1,10 @@
+require 'active_support/core_ext/hash/deep_merge'
+require 'active_support/core_ext/hash/diff'
+require 'active_support/core_ext/hash/except'
+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(keys indifferent_access deep_merge reverse_merge conversions diff slice except)
+ActiveSupport.core_ext Hash, %w(conversions)