Sha256: f0cc6b4830eddc25ac851029de1bd606f473efe61275be42ecb5f110baa1c8af
Contents?: true
Size: 839 Bytes
Versions: 6
Compression:
Stored size: 839 Bytes
Contents
require 'core_ext/duration' require 'core_ext/numeric/time' class Integer # Enables the use of time calculations and declarations, like <tt>45.minutes + # 2.hours + 4.years</tt>. # # These methods use Time#advance for precise date calculations when using # <tt>from_now</tt>, +ago+, etc. as well as adding or subtracting their # results from a Time object. # # # equivalent to Time.now.advance(months: 1) # 1.month.from_now # # # equivalent to Time.now.advance(years: 2) # 2.years.from_now # # # equivalent to Time.now.advance(months: 4, years: 5) # (4.months + 5.years).from_now def months CoreExt::Duration.new(self * 30.days, [[:months, self]]) end alias :month :months def years CoreExt::Duration.new(self * 365.25.days.to_i, [[:years, self]]) end alias :year :years end
Version data entries
6 entries across 6 versions & 1 rubygems