diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2011-01-19 14:31:22 -0800 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2011-01-21 11:16:40 -0800 |
commit | 2570c85cb7de03a2c9cc183c73707a267f2efb91 (patch) | |
tree | 7f07fcd561c682049d10e2a7fe6b350f049bea1a /activesupport/lib | |
parent | 8491f16e128d2d2cfe53676f36c5d4c281712bde (diff) | |
download | rails-2570c85cb7de03a2c9cc183c73707a267f2efb91.tar.gz rails-2570c85cb7de03a2c9cc183c73707a267f2efb91.tar.bz2 rails-2570c85cb7de03a2c9cc183c73707a267f2efb91.zip |
fixing psych support in big decimal, fixing tests to support YAML 1.1
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/big_decimal/conversions.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/big_decimal/conversions.rb b/activesupport/lib/active_support/core_ext/big_decimal/conversions.rb index 3720dbb8b8..a279849829 100644 --- a/activesupport/lib/active_support/core_ext/big_decimal/conversions.rb +++ b/activesupport/lib/active_support/core_ext/big_decimal/conversions.rb @@ -12,12 +12,19 @@ class BigDecimal # # Note that reconstituting YAML floats to native floats may lose precision. def to_yaml(opts = {}) + return super if defined?(YAML::ENGINE) && !YAML::ENGINE.syck? + YAML.quick_emit(nil, opts) do |out| string = to_s out.scalar(YAML_TAG, YAML_MAPPING[string] || string, :plain) end end + def encode_with(coder) + string = to_s + coder.represent_scalar(nil, YAML_MAPPING[string] || string) + end + def to_d self end |