Class: Integer

Inherits:
Object
  • Object
show all
Defined in:
lib/timeloop/core_ext/integer/time.rb

Instance Method Summary collapse

Instance Method Details

#monthsObject Also known as: month



3
4
5
# File 'lib/timeloop/core_ext/integer/time.rb', line 3

def months
  30 * self.days
end

#yearsObject Also known as: year



8
9
10
# File 'lib/timeloop/core_ext/integer/time.rb', line 8

def years
  365.25 * self.days
end