Sha256: ab4dac601fa02decbeeac5da7b7e5c4295d7dcc4899a28bdb620fdee412f5980

Contents?: true

Size: 1.07 KB

Versions: 254

Compression:

Stored size: 1.07 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' }

  # 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

  # Backport this method if it doesn't exist
  unless method_defined?(:to_d)
    def to_d
      self
    end
  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

254 entries across 210 versions & 24 rubygems

Version Path
classiccms-0.7.5 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/big_decimal/conversions.rb
classiccms-0.7.4 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/big_decimal/conversions.rb
classiccms-0.7.3 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/core_ext/big_decimal/conversions.rb
active_mailer-0.0.10 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/core_ext/big_decimal/conversions.rb
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.12/lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.2.21 lib/active_support/core_ext/big_decimal/conversions.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.18/lib/active_support/core_ext/big_decimal/conversions.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.18/lib/active_support/core_ext/big_decimal/conversions.rb
apl-library-0.0.90 vendor/bundle/ruby/1.8/gems/activesupport-3.2.18/lib/active_support/core_ext/big_decimal/conversions.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.18/lib/active_support/core_ext/big_decimal/conversions.rb
apl-library-0.0.90 vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.18/lib/active_support/core_ext/big_decimal/conversions.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.8/gems/activesupport-3.2.18/lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.2.20 lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.2.19 lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.2.18 lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.2.17 lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.2.16 lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.2.15 lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.2.15.rc3 lib/active_support/core_ext/big_decimal/conversions.rb
activesupport-3.2.15.rc2 lib/active_support/core_ext/big_decimal/conversions.rb