Class: Time

Inherits:
Object
  • Object
show all
Defined in:
lib/trak/time.rb

Instance Method Summary collapse

Instance Method Details

#to_minutesObject



2
3
4
5
# File 'lib/trak/time.rb', line 2

def to_minutes
  minute, hour = self.to_a[1..2]
  hour*60 + minute
end