aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-02-01 18:29:41 -0200
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-02-01 18:29:41 -0200
commit8c679fe0ca77e8cc6de6ae408a556995f3801ee8 (patch)
tree2756a096df23beca04827c3bf0a224d635acc19b /activesupport/lib/active_support
parenta60ccadbf0307e43b726044a02612a7995c81c05 (diff)
downloadrails-8c679fe0ca77e8cc6de6ae408a556995f3801ee8.tar.gz
rails-8c679fe0ca77e8cc6de6ae408a556995f3801ee8.tar.bz2
rails-8c679fe0ca77e8cc6de6ae408a556995f3801ee8.zip
Fix isolated tests
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r--activesupport/lib/active_support/core_ext/big_decimal/yaml_conversions.rb1
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' }