Object
Deserializes JSON string by constructing new Range object with arguments a serialized by to_json.
JSON
Range
a
to_json
# File json/lib/json/add/range.rb, line 10 def self.json_create(object) new(*object['a']) end
Returns a hash, that will be turned into a JSON object and represent this object.
# File json/lib/json/add/range.rb, line 16 def as_json(*) { JSON.create_id => self.class.name, 'a' => [ first, last, exclude_end? ] } end
Stores class name (Range) with JSON array of arguments a which include first (integer), last (integer), and exclude_end? (boolean) as JSON string.
first
last
exclude_end?
# File json/lib/json/add/range.rb, line 26 def to_json(*args) as_json.to_json(*args) end
This page was generated for Ruby 2.5.2
Ruby-doc.org is a service of James Britt and Neurogami, an erratic source of art, music, and technology.
Generated with Ruby-doc Rdoc Generator 0.42.0.