diff options
Diffstat (limited to 'activesupport/lib/active_support/json/encoders/symbol.rb')
-rw-r--r-- | activesupport/lib/active_support/json/encoders/symbol.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/json/encoders/symbol.rb b/activesupport/lib/active_support/json/encoders/symbol.rb index 57291e5448..485112f97c 100644 --- a/activesupport/lib/active_support/json/encoders/symbol.rb +++ b/activesupport/lib/active_support/json/encoders/symbol.rb @@ -1,5 +1,5 @@ class Symbol - def to_json #:nodoc: - ActiveSupport::JSON.encode(to_s) + def to_json(options = {}) #:nodoc: + ActiveSupport::JSON.encode(to_s, options) end end |