Sha256: aa43cdd54c8c91983c26425d016b075d8eaa4bd95bf5096b8a7196eb6be713c0
Contents?: true
Size: 794 Bytes
Versions: 486
Compression:
Stored size: 794 Bytes
Contents
unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED require 'json' end # Range serialization/deserialization class Range # Deserializes JSON string by constructing new Range object with arguments # <tt>a</tt> serialized by <tt>to_json</tt>. def self.json_create(object) new(*object['a']) end # Returns a hash, that will be turned into a JSON object and represent this # object. def as_json(*) { JSON.create_id => self.class.name, 'a' => [ first, last, exclude_end? ] } end # Stores class name (Range) with JSON array of arguments <tt>a</tt> which # include <tt>first</tt> (integer), <tt>last</tt> (integer), and # <tt>exclude_end?</tt> (boolean) as JSON string. def to_json(*args) as_json.to_json(*args) end end
Version data entries
486 entries across 414 versions & 63 rubygems