# File json/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
# File json/lib/json/generic_object.rb, line 41
def [](name)
table[name.to_sym]
end
# File json/lib/json/generic_object.rb, line 45
def []=(name, value)
__send__ "#{name}=", value
end
# File json/lib/json/generic_object.rb, line 53
def as_json(*)
{ JSON.create_id => self.class.name }.merge to_hash
end
# File json/lib/json/generic_object.rb, line 37
def to_hash
table
end
Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.
If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.
If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.
If you want to help improve the Ruby documentation, please see Improve the docs, or visit Documenting-ruby.org.