aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/json/encoders/symbol.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/json/encoders/symbol.rb')
-rw-r--r--activesupport/lib/active_support/json/encoders/symbol.rb4
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 333cf773c1..d575350a4e 100644
--- a/activesupport/lib/active_support/json/encoders/symbol.rb
+++ b/activesupport/lib/active_support/json/encoders/symbol.rb
@@ -1,6 +1,6 @@
class Symbol
private
- def rails_to_json(options = nil)
- ActiveSupport::JSON.encode(to_s, options)
+ def rails_to_json(*args)
+ ActiveSupport::JSON.encode(to_s, *args)
end
end