Sha256: 499768ddd1154b5330a5420e0a2be679206c6dd23473b6527619d1cbf6562587
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
module DataMagic module DateTranslation # # return today's date # # @param String the format to use for the date. Default is %D # # See http://ruby-doc.org/stdlib-1.9.3/libdoc/date/rdoc/Date.html#method-i-strftime # for details of the formats # def today(format = '%D') Date.today.strftime(format) end # # return tomorrow's date # # @param String the format to use for the date. Default is %D # # See http://ruby-doc.org/stdlib-1.9.3/libdoc/date/rdoc/Date.html#method-i-strftime # for details of the formats # def tomorrow(format = '%D') tomorrow = Date.today + 1 tomorrow.strftime(format) end # # return yesterday's date # # @param String the format to use for the date. Default is %D # # See http://ruby-doc.org/stdlib-1.9.3/libdoc/date/rdoc/Date.html#method-i-strftime # for details of the formats # def yesterday(format = '%D') yesterday = Date.today - 1 yesterday.strftime(format) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
data_magic-0.12 | lib/data_magic/date_translation.rb |