Class: Integer

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

Instance Method Summary collapse

Instance Method Details

#days_ago(format = '%D') ⇒ Object



9
10
11
12
# File 'lib/data_magic/core_ext/integer.rb', line 9

def days_ago(format = '%D')
  the_day = Date.today - self
  the_day.strftime(format)
end

#days_from_today(format = '%D') ⇒ Object



4
5
6
7
# File 'lib/data_magic/core_ext/integer.rb', line 4

def days_from_today(format = '%D')
  the_day = Date.today + self
  the_day.strftime(format)
end