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