Use the gson.rb library to dump/load.
# File lib/multi_json/adapters/gson.rb, line 14 def dump(object, options={}) ::Gson::Encoder.new(options).encode(object) end
# File lib/multi_json/adapters/gson.rb, line 10 def load(string, options={}) ::Gson::Decoder.new(options).decode(string) end