Converts days into seconds.
# File lib/more/facets/duration.rb, line 236 def days ; Duration[self * 86400] ; end
Converts fortnights into seconds. (A fortnight is 2 weeks)
# File lib/more/facets/duration.rb, line 245 def fortnights ; Duration[self * 1209600] ; end
Converts hours into seconds.
# File lib/more/facets/duration.rb, line 231 def hours ; Duration[self * 3600] ; end
Converts minutes into seconds.
# File lib/more/facets/duration.rb, line 227 def minutes ; Duration[self * 60] ; end
Converts months into seconds. WARNING: This is not exact as it assumes 30 days to a month.
# File lib/more/facets/duration.rb, line 250 def months ; Duration[self * 30 * 86400] ; end
Enables the use of time calculations and declarations, like 45.minutes + 2.hours + 4.years. The base unit for all of these Numeric time methods is seconds.
# File lib/more/facets/duration.rb, line 223 def seconds ; Duration[self] ; end
Converts weeks into seconds.
# File lib/more/facets/duration.rb, line 240 def weeks ; Duration[self * 604800] ; end
Converts years into seconds. WARNING: This is not exact as it assumes 365 days to a year.
ie. It doesn not account for leap years.
# File lib/more/facets/duration.rb, line 256 def years ; Duration[self * 365 * 86400, :years] ; end