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.



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

Returns:

  • (Boolean)


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

def json_creatable?
  @json_creatable
end

.json_create(data) ⇒ Object



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

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

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



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

def load(source, proc = nil, opts = {})
  result = ::JSON.load(source, proc, opts.merge(:object_class => self))
  result.nil? ? new : result
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_jsonObject



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_hashObject



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