Functional tests now work properly, bearing in mind whether a user is logged in or...
[depot.git] / vendor / rails / activesupport / lib / active_support / json / encoders / symbol.rb
1 class Symbol
2 def to_json(options = {}) #:nodoc:
3 ActiveSupport::JSON.encode(to_s, options)
4 end
5 end