diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-02-01 18:29:41 -0200 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-02-01 18:29:41 -0200 |
commit | 8c679fe0ca77e8cc6de6ae408a556995f3801ee8 (patch) | |
tree | 2756a096df23beca04827c3bf0a224d635acc19b | |
parent | a60ccadbf0307e43b726044a02612a7995c81c05 (diff) | |
download | rails-8c679fe0ca77e8cc6de6ae408a556995f3801ee8.tar.gz rails-8c679fe0ca77e8cc6de6ae408a556995f3801ee8.tar.bz2 rails-8c679fe0ca77e8cc6de6ae408a556995f3801ee8.zip |
Fix isolated tests
-rw-r--r-- | activesupport/lib/active_support/core_ext/big_decimal/yaml_conversions.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/big_decimal/yaml_conversions.rb b/activesupport/lib/active_support/core_ext/big_decimal/yaml_conversions.rb index aa2ed4d6fb..46ba93ead4 100644 --- a/activesupport/lib/active_support/core_ext/big_decimal/yaml_conversions.rb +++ b/activesupport/lib/active_support/core_ext/big_decimal/yaml_conversions.rb @@ -2,6 +2,7 @@ ActiveSupport::Deprecation.warn 'core_ext/big_decimal/yaml_conversions is deprec require 'bigdecimal' require 'yaml' +require 'active_support/core_ext/big_decimal/conversions' class BigDecimal YAML_MAPPING = { 'Infinity' => '.Inf', '-Infinity' => '-.Inf', 'NaN' => '.NaN' } |