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
direct7-0.0.18 vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/bigdecimal.rb
direct7-0.0.17 vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/bigdecimal.rb
direct7-0.0.16 vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/bigdecimal.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/json-2.6.2/lib/json/add/bigdecimal.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/json-2.6.2/lib/json/add/bigdecimal.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/json-2.6.2/lib/json/add/bigdecimal.rb
direct7-0.0.13 vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/bigdecimal.rb
direct7-0.0.12 vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/bigdecimal.rb
direct7-0.0.11 vendor/bundle/ruby/2.7.0/gems/json-2.6.3/lib/json/add/bigdecimal.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/json-2.6.3/lib/json/add/bigdecimal.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/json-2.6.2/lib/json/add/bigdecimal.rb
cloudsmith-api-2.0.7 vendor/bundle/ruby/2.6.0/gems/json-2.6.3/lib/json/add/bigdecimal.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/json-2.6.3/lib/json/add/bigdecimal.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/json-2.6.2/lib/json/add/bigdecimal.rb
cloudsmith-api-2.0.6 vendor/bundle/ruby/2.6.0/gems/json-2.6.3/lib/json/add/bigdecimal.rb
cloudsmith-api-2.0.5 vendor/bundle/ruby/2.6.0/gems/json-2.6.3/lib/json/add/bigdecimal.rb
cloudsmith-api-2.0.4 vendor/bundle/ruby/2.6.0/gems/json-2.6.3/lib/json/add/bigdecimal.rb
cloudsmith-api-2.0.3 vendor/bundle/ruby/2.6.0/gems/json-2.6.3/lib/json/add/bigdecimal.rb
cloudsmith-api-2.0.2 vendor/bundle/ruby/2.6.0/gems/json-2.6.3/lib/json/add/bigdecimal.rb
fluent-plugin-google-cloud-logging-on-prem-0.1.0 vendor/ruby/3.1.0/gems/json-2.6.3/lib/json/add/bigdecimal.rb