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
17 18 19 |
# File 'lib/json/generic_object.rb', line 17 def json_creatable=(value) @json_creatable = value end |
Class Method Details
.dump(obj, *args) ⇒ Object
45 46 47 |
# File 'lib/json/generic_object.rb', line 45 def dump(obj, *args) ::JSON.dump(obj, *args) end |
.from_hash(object) ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/json/generic_object.rb', line 25 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
13 14 15 |
# File 'lib/json/generic_object.rb', line 13 def json_creatable? @json_creatable end |
Instance Method Details
#[](name) ⇒ Object
55 56 57 |
# File 'lib/json/generic_object.rb', line 55 def [](name) __send__(name) end |
#[]=(name, value) ⇒ Object
59 60 61 |
# File 'lib/json/generic_object.rb', line 59 def []=(name, value) __send__("#{name}=", value) end |
#as_json ⇒ Object
67 68 69 |
# File 'lib/json/generic_object.rb', line 67 def as_json(*) { JSON.create_id => self.class.name }.merge to_hash end |
#to_hash ⇒ Object
51 52 53 |
# File 'lib/json/generic_object.rb', line 51 def to_hash table end |
#to_json(*a) ⇒ Object
71 72 73 |
# File 'lib/json/generic_object.rb', line 71 def to_json(*a) as_json.to_json(*a) end |
#|(other) ⇒ Object
63 64 65 |
# File 'lib/json/generic_object.rb', line 63 def |(other) self.class[other.to_hash.merge(to_hash)] end |