Skip to content

Instantly share code, notes, and snippets.

@hone
Created September 23, 2010 20:11
Show Gist options
  • Save hone/594254 to your computer and use it in GitHub Desktop.
Save hone/594254 to your computer and use it in GitHub Desktop.
>> User.first.to_json
=> "{\"user\":{\"created_at\":\"2010-05-17T21:27:10Z\", ...
>> require 'json/pure'
>> User.first.to_json
=> "\"#<User:0x2ad95bc8d138>\""
>> require 'json/add/rails'
>> User.first.to_json
=> "{\"attributes\":{\"created_at\":\"2010-05-17 21:27:10.536899\" ... },\"json_class\":\"User\",\"attributes_cache\":{}}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment