Repository URL to install this package:
|
Version:
1.3.0 ▾
|
require 'yajl' unless defined?(Yajl::Parser)
require 'yajl/json_gem/parsing'
require 'yajl/json_gem/encoding'
module ::Kernel
def JSON(object, opts = {})
if object.respond_to? :to_s
JSON.parse(object.to_s, JSON.default_options.merge(opts))
else
JSON.generate(object, opts)
end
end
end