Module: ActiveSupport::ToJsonWithActiveSupportEncoder
- Defined in:
- lib/active_support/core_ext/object/json.rb
Overview
:nodoc:
Instance Method Summary collapse
Instance Method Details
#to_json(options = nil) ⇒ Object
35 36 37 38 39 40 41 42 43 |
# File 'lib/active_support/core_ext/object/json.rb', line 35 def to_json( = nil) if .is_a?(::JSON::State) # Called from JSON.{generate,dump}, forward it to JSON gem's to_json super() else # to_json is being invoked directly, use ActiveSupport's encoder ActiveSupport::JSON.encode(self, ) end end |