Sha256: bd0e279280859869e38b4e3384b1fee72414897bdd75b31553e9d3a51194ee1d

Contents?: true

Size: 1 KB

Versions: 25

Compression:

Stored size: 1 KB

Contents

require 'bigdecimal'

begin
  require 'psych'
rescue LoadError
end

require 'yaml'

class BigDecimal
  YAML_TAG = 'tag:yaml.org,2002:float'
  YAML_MAPPING = { 'Infinity' => '.Inf', '-Infinity' => '-.Inf', 'NaN' => '.NaN' }

  yaml_as YAML_TAG

  # This emits the number without any scientific notation.
  # This is better than self.to_f.to_s since it doesn't lose precision.
  #
  # 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

  DEFAULT_STRING_FORMAT = 'F'
  def to_formatted_s(format = DEFAULT_STRING_FORMAT)
    _original_to_s(format)
  end
  alias_method :_original_to_s, :to_s
  alias_method :to_s, :to_formatted_s
end

Version data entries

25 entries across 25 versions & 2 rubygems

Version Path
activesupport-3.0.20 lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.0.19 lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.0.18 lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.0.17 lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.0.16 lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.0.15 lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.0.14 lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.0.13 lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.0.13.rc1 lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.0.12 lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.0.12.rc1 lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.0.11 lib/active_support/core_ext/big_decimal/conversions.rb
messagebus_ruby_api-0.4.7 spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/big_decimal/conversions.rb
messagebus_ruby_api-0.4.4 spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.0.10 lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.0.10.rc1 lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.0.9 lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.0.9.rc5 lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.0.9.rc4 lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.0.9.rc3 lib/active_support/core_ext/big_decimal/conversions.rb