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