Class: JSON::GenericObject
- Inherits:
-
OpenStruct
- Object
- OpenStruct
- JSON::GenericObject
- Defined in:
- lib/json/generic_object.rb
Class Attribute Summary collapse
-
.json_creatable ⇒ Object
writeonly
Sets the attribute json_creatable.
Class Method Summary collapse
- .dump(obj, *args) ⇒ Object
- .from_hash(object) ⇒ Object
- .json_creatable? ⇒ Boolean
- .json_create(data) ⇒ Object
- .load(source, proc = nil, opts = {}) ⇒ Object
Instance Method Summary collapse
Class Attribute Details
.json_creatable=(value) ⇒ Object (writeonly)
Sets the attribute json_creatable
13 14 15 |
# File 'lib/json/generic_object.rb', line 13 def json_creatable=(value) @json_creatable = value end |
Class Method Details
.dump(obj, *args) ⇒ Object
41 42 43 |
# File 'lib/json/generic_object.rb', line 41 def dump(obj, *args) ::JSON.dump(obj, *args) end |
.from_hash(object) ⇒ Object
21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/json/generic_object.rb', line 21 def from_hash(object) case when object.respond_to?(:to_hash) result = new object.to_hash.each do |key, value| result[key] = from_hash(value) end result when object.respond_to?(:to_ary) object.to_ary.map { |a| from_hash(a) } else object end end |
.json_creatable? ⇒ Boolean
9 10 11 |
# File 'lib/json/generic_object.rb', line 9 def json_creatable? @json_creatable end |
Instance Method Details
#as_json ⇒ Object
55 56 57 |
# File 'lib/json/generic_object.rb', line 55 def as_json(*) { JSON.create_id => self.class.name }.merge to_hash end |
#to_hash ⇒ Object
47 48 49 |
# File 'lib/json/generic_object.rb', line 47 def to_hash table end |
#to_json(*a) ⇒ Object
59 60 61 |
# File 'lib/json/generic_object.rb', line 59 def to_json(*a) as_json.to_json(*a) end |
#|(other) ⇒ Object
51 52 53 |
# File 'lib/json/generic_object.rb', line 51 def |(other) self.class[other.to_hash.merge(to_hash)] end |