aboutsummaryrefslogtreecommitdiff
path: root/lib/mauve/mauve_time.rb
blob: bf69d1b37b26dcf15442e50b3dd5bf26f8e6ca46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'time'

module Mauve

  class MauveTime < Time
      
    def to_s
      self.iso8601
    end

  end

end