Is there a way to make JSON generated string keep attribute names? From this model:
class Person
attr_accessor :name
def self.json_create(o)
new(*o['data'])
end
def to_json(*a)
{ 'json_class' => self.class.name, 'data' => [name] }.to_json(*a)
end
end
JSON generates this string:
{
"json_class": "Person",
"data": ["John"]
}
but I wanted a string like this:
{
"json_class": "Person",
"data":
{
"name" : "John"
}
}
Is there a way to do it and still be able to access attributes by its name? Like:
person.name