Class: JSON::GenericObject

Inherits:
OpenStruct show all
Defined in:
lib/json/generic_object.rb

Class Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Class Attribute Details

.json_creatable=(value) ⇒ Object (writeonly)

Sets the attribute json_creatable

Parameters:

  • value

    the value to set the attribute json_creatable to.



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

Returns:

  • (Boolean)


9
10
11
# File 'lib/json/generic_object.rb', line 9

def json_creatable?
  @json_creatable
end

.json_create(data) ⇒ Object



15
16
17
18
19
# File 'lib/json/generic_object.rb', line 15

def json_create(data)
  data = data.dup
  data.delete JSON.create_id
  self[data]
end

.load(source, proc = nil, opts = {}) ⇒ Object



36
37
38
39
# File 'lib/json/generic_object.rb', line 36

def load(source, proc = nil, opts = {})
  result = ::JSON.load(source, proc, opts.merge(:object_class => self))
  result.nil? ? new : result
end

Instance Method Details

#as_jsonObject



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_hashObject



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