Class: Numeric

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

Instance Method Summary collapse

Instance Method Details

#durationObject



2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# File 'lib/duration.rb', line 2

def duration
  secs  = self.to_int
  mins  = secs / 60
  hours = mins / 60
  days  = hours / 24

  if days > 0
    "#{days} days and #{hours % 24} hours"
  elsif hours > 0
    "#{hours} hours and #{mins % 60} minutes"
  elsif mins > 0
    "#{mins} minutes and #{secs % 60} seconds"
  elsif secs >= 0
    "#{secs} seconds"
  end
end