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

Version Path
tdiary-5.0.1 vendor/bundle/gems/multi_json-1.12.1/lib/multi_json/adapters/gson.rb
multi_json-1.12.1 lib/multi_json/adapters/gson.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/multi_json-1.12.0/lib/multi_json/adapters/gson.rb
multi_json-1.12.0 lib/multi_json/adapters/gson.rb
multi_json-1.11.3 lib/multi_json/adapters/gson.rb