Upgraded Rails and RSpec
[monkeycharger.git] / vendor / rails / activesupport / lib / active_support / json / encoders / symbol.rb
blob485112f97cff0830fca8b18d01454708234d1c9b
1 class Symbol
2   def to_json(options = {}) #:nodoc:
3     ActiveSupport::JSON.encode(to_s, options)
4   end
5 end