Upgraded Rails and RSpec
[monkeycharger.git] / vendor / rails / activesupport / lib / active_support / json / encoders / time.rb
blob8eb9ff132ee5edf363cce000c1e6c89d72d183f7
1 class Time
2   def to_json(options = nil) #:nodoc:
3     to_datetime.to_json(options)
4   end
5 end