class MultiJson::Adapters::Gson

Use the gson.rb library to dump/load.

def dump(object, options = {})

def dump(object, options = {})
  ::Gson::Encoder.new(options).encode(object)
end

def load(string, options = {})

def load(string, options = {})
  ::Gson::Decoder.new(options).decode(string)
end