aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/json/encoders/object.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-04-26 20:04:47 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-04-26 20:04:47 -0700
commitee46ffedb88f812467485167036c7d254d0ce757 (patch)
tree3a2024e2edff6a61822a12c6308a1d917fa683fe /activesupport/lib/active_support/json/encoders/object.rb
parent678385d307559b2b5737bb2b07f633d2b9a0802c (diff)
downloadrails-ee46ffedb88f812467485167036c7d254d0ce757.tar.gz
rails-ee46ffedb88f812467485167036c7d254d0ce757.tar.bz2
rails-ee46ffedb88f812467485167036c7d254d0ce757.zip
Now that we have a separate internal rails_to_json, use a separate circular reference stack instead of sticking it in the options hash
Diffstat (limited to 'activesupport/lib/active_support/json/encoders/object.rb')
-rw-r--r--activesupport/lib/active_support/json/encoders/object.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/json/encoders/object.rb b/activesupport/lib/active_support/json/encoders/object.rb
index 4722feb7db..9cc12d91ac 100644
--- a/activesupport/lib/active_support/json/encoders/object.rb
+++ b/activesupport/lib/active_support/json/encoders/object.rb
@@ -3,11 +3,11 @@ require 'active_support/core_ext/object/instance_variables'
class Object
# Dumps object in JSON (JavaScript Object Notation). See www.json.org for more info.
def to_json(options = nil)
- rails_to_json(options)
+ ActiveSupport::JSON.encode(self, options)
end
private
- def rails_to_json(options = nil)
- ActiveSupport::JSON.encode(instance_values, options)
+ def rails_to_json(*args)
+ ActiveSupport::JSON.encode(instance_values, *args)
end
end