Method: Object#as_json
- Defined in:
- lib/active_support/core_ext/object/json.rb
#as_json(options = nil) ⇒ Object
:nodoc:
59 60 61 62 63 64 65 |
# File 'lib/active_support/core_ext/object/json.rb', line 59 def as_json( = nil) # :nodoc: if respond_to?(:to_hash) to_hash.as_json() else instance_values.as_json() end end |