aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/json/encoders/symbol.rb
blob: 333cf773c122843813983dece3792cd63acdd715 (plain) (blame)
1
2
3
4
5
6
class Symbol
  private
    def rails_to_json(options = nil)
      ActiveSupport::JSON.encode(to_s, options)
    end
end