aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/json/encoders/symbol.rb
blob: 6487bf8cb7dfff4bc535fc4516b736cc99f9c75a (plain) (blame)
1
2
3
4
5
6
7
class Symbol
  def rails_to_json(options = {}) #:nodoc:
    ActiveSupport::JSON.encode(to_s, options)
  end

  alias to_json rails_to_json
end