Sha256: 7968eab192dce4e91590a73bf3ccfe2d56d9a63b7332fbbb296c236c321f4a70

Contents?: true

Size: 1.09 KB

Versions: 164

Compression:

Stored size: 1.09 KB

Contents

require 'yaml'

module ActiveSupport #:nodoc:
  module CoreExtensions #:nodoc:
    module BigDecimal #:nodoc:
      module Conversions
        DEFAULT_STRING_FORMAT = 'F'.freeze
        YAML_TAG = 'tag:yaml.org,2002:float'.freeze
        YAML_MAPPING = { 'Infinity' => '.Inf', '-Infinity' => '-.Inf', 'NaN' => '.NaN' }

        def self.included(base) #:nodoc:
          base.class_eval do
            alias_method :_original_to_s, :to_s
            alias_method :to_s, :to_formatted_s

            yaml_as YAML_TAG
          end
        end

        def to_formatted_s(format = DEFAULT_STRING_FORMAT)
          _original_to_s(format)
        end

        # 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 = {})
          YAML.quick_emit(nil, opts) do |out|
            string = to_s
            out.scalar(YAML_TAG, YAML_MAPPING[string] || string, :plain)
          end
        end
      end
    end
  end
end

Version data entries

164 entries across 131 versions & 20 rubygems

Version Path
depengine-0.0.3 etc/isolate/ruby-1.8/gems/activesupport-2.3.8/lib/active_support/core_ext/bigdecimal/conversions.rb
depengine-0.0.3 etc/isolate/jruby-1.8/gems/activesupport-2.3.8/lib/active_support/core_ext/bigdecimal/conversions.rb
depengine-0.0.2 etc/isolate/ruby-1.8/gems/activesupport-2.3.8/lib/active_support/core_ext/bigdecimal/conversions.rb
depengine-0.0.2 etc/isolate/jruby-1.8/gems/activesupport-2.3.8/lib/active_support/core_ext/bigdecimal/conversions.rb
activesupport_csi-2.3.5.p8 lib/active_support/core_ext/bigdecimal/conversions.rb
activesupport-2.3.17 lib/active_support/core_ext/bigdecimal/conversions.rb
depengine-0.0.1 etc/isolate/jruby-1.8/gems/activesupport-2.3.8/lib/active_support/core_ext/bigdecimal/conversions.rb
depengine-0.0.1 etc/isolate/ruby-1.8/gems/activesupport-2.3.8/lib/active_support/core_ext/bigdecimal/conversions.rb
activesupport_csi-2.3.5.p7 lib/active_support/core_ext/bigdecimal/conversions.rb
activesupport_csi-2.3.5.p6 lib/active_support/core_ext/bigdecimal/conversions.rb
activesupport-2.3.16 lib/active_support/core_ext/bigdecimal/conversions.rb
activesupport-2.3.15 lib/active_support/core_ext/bigdecimal/conversions.rb
abiquo-etk-0.6.4 vendor/activesupport-2.3.8/lib/active_support/core_ext/bigdecimal/conversions.rb
abiquo-etk-0.6.3 vendor/activesupport-2.3.8/lib/active_support/core_ext/bigdecimal/conversions.rb
abiquo-etk-0.6.2 vendor/activesupport-2.3.8/lib/active_support/core_ext/bigdecimal/conversions.rb
abiquo-etk-0.6.1 vendor/activesupport-2.3.8/lib/active_support/core_ext/bigdecimal/conversions.rb
abiquo-etk-0.6.0 vendor/activesupport-2.3.8/lib/active_support/core_ext/bigdecimal/conversions.rb
abiquo-etk-0.5.9 vendor/activesupport-2.3.8/lib/active_support/core_ext/bigdecimal/conversions.rb
radiant-1.0.0 ruby-debug/ruby/1.8/gems/activesupport-2.3.14/lib/active_support/core_ext/bigdecimal/conversions.rb
abiquo-etk-0.5.8 vendor/activesupport-2.3.8/lib/active_support/core_ext/bigdecimal/conversions.rb