Class: BigDecimal
Relationships & Source Files | |
Inherits: | Object |
Defined in: | ext/json/lib/json/add/bigdecimal.rb |
Class Method Summary
-
.json_create(object)
Import a
::JSON
Marshalled object.
Instance Method Summary
-
#as_json
Marshal the object to
::JSON
. -
#to_json(*args)
return the
::JSON
value.
Class Method Details
.json_create(object)
[ GitHub ]# File 'ext/json/lib/json/add/bigdecimal.rb', line 11
def self.json_create(object) BigDecimal._load object['b'] end
Instance Method Details
#as_json
[ GitHub ]#to_json(*args)
return the ::JSON
value
# File 'ext/json/lib/json/add/bigdecimal.rb', line 26
def to_json(*args) as_json.to_json(*args) end