Sha256: cc873192614285148dbe314566694fe927f21572774e2ced4b0660283fd933ad
Contents?: true
Size: 251 Bytes
Versions: 1
Compression:
Stored size: 251 Bytes
Contents
# frozen_string_literal: true class Integer def days_from_today(format = '%D') the_day = Date.today + self the_day.strftime(format) end def days_ago(format = '%D') the_day = Date.today - self the_day.strftime(format) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
new_data_magic-1.2 | lib/data_magic/core_ext/integer.rb |