Upgraded Rails and RSpec
[monkeycharger.git] / vendor / rails / activesupport / lib / active_support / json / encoders / date_time.rb
blobf0b04344126242b41a80894161603794e32b88bf
1 class DateTime
2   def to_json(options = nil) #:nodoc:
3     %("#{strftime("%Y/%m/%d %H:%M:%S %z")}")
4   end
5 end