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
- #[](name) ⇒ Object
- #[]=(name, value) ⇒ Object
- #as_json ⇒ Object
- #to_hash ⇒ Object
- #to_json(*a) ⇒ Object
- #|(other) ⇒ Object
Class Attribute Details
.json_creatable=(value) ⇒ Object (writeonly)
Sets the attribute json_creatable
12 13 14 |
# File 'lib/json/generic_object.rb', line 12 def json_creatable=(value) @json_creatable = value end |
Class Method Details
.dump(obj, *args) ⇒ Object
40 41 42 |
# File 'lib/json/generic_object.rb', line 40 def dump(obj, *args) ::JSON.dump(obj, *args) end |
.from_hash(object) ⇒ Object
20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/json/generic_object.rb', line 20 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
8 9 10 |
# File 'lib/json/generic_object.rb', line 8 def json_creatable? @json_creatable end |
Instance Method Details
#[](name) ⇒ Object
50 51 52 |
# File 'lib/json/generic_object.rb', line 50 def [](name) table[name.to_sym] end |
#[]=(name, value) ⇒ Object
54 55 56 |
# File 'lib/json/generic_object.rb', line 54 def []=(name, value) __send__ "#{name}=", value end |
#as_json ⇒ Object
62 63 64 |
# File 'lib/json/generic_object.rb', line 62 def as_json(*) { JSON.create_id => self.class.name }.merge to_hash end |
#to_hash ⇒ Object
46 47 48 |
# File 'lib/json/generic_object.rb', line 46 def to_hash table end |
#to_json(*a) ⇒ Object
66 67 68 |
# File 'lib/json/generic_object.rb', line 66 def to_json(*a) as_json.to_json(*a) end |
#|(other) ⇒ Object
58 59 60 |
# File 'lib/json/generic_object.rb', line 58 def |(other) self.class[other.to_hash.merge(to_hash)] end |