# File lib/json/add/rails.rb, line 10 10: def self.json_create(object) 11: obj = new 12: for key, value in object 13: next if key == 'json_class' 14: instance_variable_set "@#{key}", value 15: end 16: obj 17: end