Sha256: 959b6109d078c65d3bfc1dd35b046a3c51400e60b53f76f7d18f236da360c0b0
Contents?: true
Size: 545 Bytes
Versions: 238
Compression:
Stored size: 545 Bytes
Contents
unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED require 'json' end defined?(::Set) or require 'set' class Set # Import a JSON Marshalled object. # # method used for JSON marshalling support. def self.json_create(object) new object['a'] end # Marshal the object to JSON. # # method used for JSON marshalling support. def as_json(*) { JSON.create_id => self.class.name, 'a' => to_a, } end # return the JSON value def to_json(*args) as_json.to_json(*args) end end
Version data entries
238 entries across 228 versions & 22 rubygems