Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v2.3.8) is shown here.
encode(value, options = nil)
public
Converts a Ruby object into a JSON string.
# File activesupport/lib/active_support/json/encoding.rb, line 74
def encode(value, options = nil)
options = {} unless Hash === options
seen = (options[:seen] ||= [])
raise CircularReferenceError, 'object references itself' if seen.include?(value)
seen << value
value.to_json(options)
ensure
seen.pop
end