Class: MultiJson::Adapters::Gson

Inherits:
MultiJson::Adapter show all
Defined in:
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/multi_json-1.15.0/lib/multi_json/adapters/gson.rb

Overview

Use the gson.rb library to dump/load.

Constant Summary collapse

ParseError =
::Gson::DecodeError

Instance Method Summary collapse

Methods inherited from MultiJson::Adapter

defaults, dump, load

Methods included from Options

#default_dump_options, #default_load_options, #dump_options, #dump_options=, #load_options, #load_options=

Methods included from Singleton

#duplicable?

Instance Method Details

#dump(object, options = {}) ⇒ Object



15
16
17
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/multi_json-1.15.0/lib/multi_json/adapters/gson.rb', line 15

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

#load(string, options = {}) ⇒ Object



11
12
13
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/multi_json-1.15.0/lib/multi_json/adapters/gson.rb', line 11

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