diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-07-01 16:00:33 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-07-01 16:01:20 -0700 |
commit | f37a2ea84c291e7cf7921fb69b03419aa00c3d20 (patch) | |
tree | 42b41ee6a98ee8dcb5b79c1fc36cb96c1b66a0aa /activesupport | |
parent | 8e3e362aedc44ad268840cc04e25703a8daa23a2 (diff) | |
download | rails-f37a2ea84c291e7cf7921fb69b03419aa00c3d20.tar.gz rails-f37a2ea84c291e7cf7921fb69b03419aa00c3d20.tar.bz2 rails-f37a2ea84c291e7cf7921fb69b03419aa00c3d20.zip |
uses Hash#except/slice
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/json/encoding.rb | 2 |
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' |