Skip to content

Instantly share code, notes, and snippets.

@tobi
Created November 3, 2010 13:38
Show Gist options
  • Save tobi/661075 to your computer and use it in GitHub Desktop.
Save tobi/661075 to your computer and use it in GitHub Desktop.
Unexpected behavior of json before core mixins are loaded
[tobi@i7:~]% irb
ree-1.8.7-2010.02 > require 'rubygems'
=> true
ree-1.8.7-2010.02 > require 'json'
=> true
ree-1.8.7-2010.02 > JSON.parse([ Time.now ].to_json)[0].class
=> String
ree-1.8.7-2010.02 > require 'json/add/core'
=> true
ree-1.8.7-2010.02 > JSON.parse([ Time.now ].to_json)[0].class
=> Time
@jlecour
Copy link

jlecour commented Nov 3, 2010

Indeed, that's funny.

By the way, don't you use YAJL ?
It appears to be quite faster, but you need an external library.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment