Class: Integer

Inherits:
Object
  • Object
show all
Defined in:
lib/vault-tools/time.rb

Instance Method Summary collapse

Instance Method Details

#daysObject Also known as: day



25
26
27
# File 'lib/vault-tools/time.rb', line 25

def days
  self * 24 * 60 * 60
end

#weeksObject Also known as: week



20
21
22
# File 'lib/vault-tools/time.rb', line 20

def weeks
  self.days * 7
end