method
to_json
v7.1.3.2 -
Show latest stable
- Class:
ActiveSupport::ToJsonWithActiveSupportEncoder
to_json(options = nil)public
No documentation available.
# File activesupport/lib/active_support/core_ext/object/json.rb, line 36
def to_json(options = nil)
if options.is_a?(::JSON::State)
# Called from JSON.{generate,dump}, forward it to JSON gem's to_json
super(options)
else
# to_json is being invoked directly, use ActiveSupport's encoder
ActiveSupport::JSON.encode(self, options)
end
end