Sha256: 832fd35c30cd08fa80513601a135187a1abb21d90d8fc52f1f79f23145ce1800
Contents?: true
Size: 425 Bytes
Versions: 125
Compression:
Stored size: 425 Bytes
Contents
require 'gson' require 'stringio' require 'multi_json/adapter' module MultiJson module Adapters # Use the gson.rb library to dump/load. class Gson < Adapter ParseError = ::Gson::DecodeError def load(string, options = {}) ::Gson::Decoder.new(options).decode(string) end def dump(object, options = {}) ::Gson::Encoder.new(options).encode(object) end end end end
Version data entries
125 entries across 106 versions & 22 rubygems