diff options
Diffstat (limited to 'activesupport/lib/active_support/json/encoders/true_class.rb')
-rw-r--r-- | activesupport/lib/active_support/json/encoders/true_class.rb | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/activesupport/lib/active_support/json/encoders/true_class.rb b/activesupport/lib/active_support/json/encoders/true_class.rb index ac7c7d1e87..bc25a6db78 100644 --- a/activesupport/lib/active_support/json/encoders/true_class.rb +++ b/activesupport/lib/active_support/json/encoders/true_class.rb @@ -1,7 +1,6 @@ class TrueClass - def rails_to_json(options = nil) #:nodoc: - 'true' - end - - alias to_json rails_to_json + private + def rails_to_json(*) + 'true' + end end |