File Manager

Path: /opt/chef/embedded/lib/ruby/gems/2.7.0/gems/multi_json-1.15.0/lib/multi_json/adapters/

Viewing File: gson.rb

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