diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2010-05-02 14:59:51 -0300 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-05-02 22:05:40 +0200 |
commit | 02028e529c97488b6c70cdbf66dc08c7fb2d36aa (patch) | |
tree | 6de67f0ec5e79e5fd9a31a1a4ca2dcf10696e174 /activesupport/lib | |
parent | ceaa100e59c7953ce5c0e978ddd6d5bc046c9fd9 (diff) | |
download | rails-02028e529c97488b6c70cdbf66dc08c7fb2d36aa.tar.gz rails-02028e529c97488b6c70cdbf66dc08c7fb2d36aa.tar.bz2 rails-02028e529c97488b6c70cdbf66dc08c7fb2d36aa.zip |
Missing require added make pass activesupport/test/json/encoding_test.rb in isolation
Signed-off-by: Xavier Noria <fxn@hashref.com>
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/json/encoding.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/json/encoding.rb b/activesupport/lib/active_support/json/encoding.rb index e692f6d142..3d7be8da1f 100644 --- a/activesupport/lib/active_support/json/encoding.rb +++ b/activesupport/lib/active_support/json/encoding.rb @@ -1,6 +1,7 @@ # encoding: utf-8 require 'bigdecimal' require 'active_support/core_ext/array/wrap' +require 'active_support/core_ext/big_decimal/conversions' require 'active_support/core_ext/hash/except' require 'active_support/core_ext/hash/slice' require 'active_support/core_ext/module/delegation' |