aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/json/encoders/time.rb
blob: 8eb9ff132ee5edf363cce000c1e6c89d72d183f7 (plain) (blame)
1
2
3
4
5
class Time
  def to_json(options = nil) #:nodoc:
    to_datetime.to_json(options)
  end
end