summaryrefslogtreecommitdiff
path: root/lib/json/light_object.rb
blob: 69dd5ab41f43205c30c6298cd920b72405b30c07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
require 'ostruct'

module JSON
  class LightObject < OpenStruct
    class << self
      alias [] new

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

    def to_hash
      __send__ :table
    end

    def |(other)
      self.class[other.to_hash.merge(to_hash)]
    end

    def as_json(*)
      to_hash | { JSON.create_id => self.class.name }
    end

    def to_json(*a)
      as_json.to_json(*a)
    end

    def method_missing(*a, &b)
      to_hash.__send__(*a, &b)
    rescue NoMethodError
      super
    end
  end
end