Class | Object |
In: |
lib/json.rb
|
Parent: | 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. state is a JSON::State object, that can also be used to configure the produced JSON string output further.
# File lib/json.rb, line 528 528: def to_json(*) to_s.to_json end