Class: DateTime

Inherits:
Object
  • Object
show all
Defined in:
lib/kerio-ical/date_time.rb

Overview

Extends DateTime

Instance Method Summary collapse

Instance Method Details

#to_timeObject

converts to Time



4
5
6
# File 'lib/kerio-ical/date_time.rb', line 4

def to_time
  Time.mktime(self.year, self.month, self.day, self.hour, self.min, self.sec)
end