Class: Set
- Inherits:
-
Object
- Object
- Set
- Defined in:
- lib/json/add/set.rb
Class Method Summary collapse
-
.json_create(object) ⇒ Object
Import a JSON Marshalled object.
Instance Method Summary collapse
-
#as_json ⇒ Object
Marshal the object to JSON.
-
#to_json(*args) ⇒ Object
return the JSON value.
Class Method Details
.json_create(object) ⇒ Object
Import a JSON Marshalled object.
method used for JSON marshalling support.
10 11 12 |
# File 'lib/json/add/set.rb', line 10 def self.json_create(object) new object['a'] end |
Instance Method Details
#as_json ⇒ Object
Marshal the object to JSON.
method used for JSON marshalling support.
17 18 19 20 21 22 |
# File 'lib/json/add/set.rb', line 17 def as_json(*) { JSON.create_id => self.class.name, 'a' => to_a, } end |
#to_json(*args) ⇒ Object
return the JSON value
25 26 27 |
# File 'lib/json/add/set.rb', line 25 def to_json(*args) as_json.to_json(*args) end |