Sha256: b9bfa1a8e2f172a7d366c1011775bfb01827cdc177f2b008c7f65caad7c574cb

Contents?: true

Size: 609 Bytes

Versions: 139

Compression:

Stored size: 609 Bytes

Contents

#frozen_string_literal: false
unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED
  require 'json'
end
defined?(::BigDecimal) or require 'bigdecimal'

class BigDecimal
  # Import a JSON Marshalled object.
  #
  # method used for JSON marshalling support.
  def self.json_create(object)
    BigDecimal._load object['b']
  end

  # Marshal the object to JSON.
  #
  # method used for JSON marshalling support.
  def as_json(*)
    {
      JSON.create_id => self.class.name,
      'b'            => _dump,
    }
  end

  # return the JSON value
  def to_json(*args)
    as_json.to_json(*args)
  end
end

Version data entries

139 entries across 129 versions & 18 rubygems

Version Path
json-2.3.1-java lib/json/add/bigdecimal.rb
json_pure-2.3.1 lib/json/add/bigdecimal.rb
json-2.3.1 lib/json/add/bigdecimal.rb
cloudsmith-api-0.51.38 vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/add/bigdecimal.rb
cloudsmith-api-0.51.37 vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/add/bigdecimal.rb
cloudsmith-api-0.51.34 vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/add/bigdecimal.rb
cloudsmith-api-0.51.22 vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/add/bigdecimal.rb
talon_one-2.0.0 vendor/bundle/ruby/2.3.0/gems/json-2.3.0/lib/json/add/bigdecimal.rb
cloudsmith-api-0.49.118 vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/add/bigdecimal.rb
cloudsmith-api-0.49.98 vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/add/bigdecimal.rb
cloudsmith-api-0.49.94 vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/add/bigdecimal.rb
json_pure-2.3.0 lib/json/add/bigdecimal.rb
cloudsmith-api-0.49.21 vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/add/bigdecimal.rb
cloudsmith-api-0.49.15 vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/add/bigdecimal.rb
cloudsmith-api-0.49.13 vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/add/bigdecimal.rb
cloudsmith-api-0.49.9 vendor/bundle/ruby/2.3.0/gems/json-2.3.0/lib/json/add/bigdecimal.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.4.0/gems/json-2.3.0/lib/json/add/bigdecimal.rb
json-2.3.0-java lib/json/add/bigdecimal.rb
json-2.3.0 lib/json/add/bigdecimal.rb