Sha256: 99d5e4af09b3bccad4eb04e93f78ceed05484ade41ad26d79c2bc95a8da3397d
Contents?: true
Size: 638 Bytes
Versions: 75
Compression:
Stored size: 638 Bytes
Contents
#frozen_string_literal: false unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED require 'json' end begin require 'bigdecimal' rescue LoadError end 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 if defined?(::BigDecimal)
Version data entries
75 entries across 75 versions & 3 rubygems