Froze rails gems
[depot.git] / vendor / rails / activesupport / lib / active_support / json / encoders / object.rb
1 class Object
2 # Dumps object in JSON (JavaScript Object Notation). See www.json.org for more info.
3 def to_json(options = {})
4 ActiveSupport::JSON.encode(instance_values, options)
5 end
6 end