Class: Json2Objects

Inherits:
Object
  • Object
show all
Defined in:
lib/json2objects.rb

Constant Summary collapse

VERSION =
'0.0.3'

Instance Method Summary collapse

Instance Method Details

#create(json) ⇒ Object



10
11
12
13
# File 'lib/json2objects.rb', line 10

def create(json)
  data = JSON.parse(json)
  create_object data
end

#to_json(o) ⇒ Object



15
16
17
# File 'lib/json2objects.rb', line 15

def to_json(o)

end