Module: JSON::Pure::Generator::GeneratorMethods::Object

Defined in:
lib/json/pure/generator.rb

Instance Method Summary collapse

Instance Method Details

#to_json(generator_state) ⇒ Object

Converts this object to a string (calling #to_s), converts it to a JSON string, and returns the result. This is a fallback, if no special method #to_json was defined for some object.



319
320
321
322
323
324
325
# File 'lib/json/pure/generator.rb', line 319

def to_json(generator_state)
  if generator_state.strict?
    raise GeneratorError, "#{self.class} not allowed in JSON"
  else
    to_s.to_json
  end
end