summaryrefslogtreecommitdiffstats
path: root/debian/vendor-h2o/deps/mruby-iijson/mrblib/to_json.rb
blob: ee97ac2c618c5762c395879fd77e69005e5d47bf (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
38
39
40
41
42
43
44
45
46
47
class Array
  def to_json
    JSON.generate(self)
  end
end

class FalseClass
  def to_json
    JSON.generate(self)
  end
end

class Fixnum
  def to_json
    JSON.generate(self)
  end
end

class Float
  def to_json
    JSON.generate(self)
  end
end

class Hash
  def to_json
    JSON.generate(self)
  end
end

class NilClass
  def to_json
    JSON.generate(self)
  end
end

class String
  def to_json
    JSON.generate(self)
  end
end

class TrueClass
  def to_json
    JSON.generate(self)
  end
end