aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-07-01 16:00:33 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-07-01 16:01:20 -0700
commitf37a2ea84c291e7cf7921fb69b03419aa00c3d20 (patch)
tree42b41ee6a98ee8dcb5b79c1fc36cb96c1b66a0aa /activesupport/lib
parent8e3e362aedc44ad268840cc04e25703a8daa23a2 (diff)
downloadrails-f37a2ea84c291e7cf7921fb69b03419aa00c3d20.tar.gz
rails-f37a2ea84c291e7cf7921fb69b03419aa00c3d20.tar.bz2
rails-f37a2ea84c291e7cf7921fb69b03419aa00c3d20.zip
uses Hash#except/slice
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/json/encoding.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/json/encoding.rb b/activesupport/lib/active_support/json/encoding.rb
index 068b58b997..566fd127a1 100644
--- a/activesupport/lib/active_support/json/encoding.rb
+++ b/activesupport/lib/active_support/json/encoding.rb
@@ -1,5 +1,7 @@
# encoding: binary
require 'active_support/core_ext/array/wrap'
+require 'active_support/core_ext/hash/except'
+require 'active_support/core_ext/hash/slice'
require 'active_support/core_ext/module/delegation'
require 'active_support/core_ext/object/instance_variables'
require 'active_support/deprecation'