{"user"=>
{"bio"=>"rubyist",
"created_at"=>"2011-05-03T15:21:46+02:00",
"email"=>"paul@pauldix.net",
"id"=>61, "name"=>"paul",
"updated_at"=>"2011-05-03T15:21:46+02:00"}}
What is the difference between using double double quotes and single quotes?:
attributes = JSON.parse(last_response.body)["user"]
attributes = JSON.parse(last_response.body)['user']
It seems that the first case works, but the second case does not find any key. I don't understand why.
