Sha256: 48f5253c2a097200fae7e19d9a9133edb760365e1b5e40d87d2f307ffd92e2af

Contents?: true

Size: 811 Bytes

Versions: 23

Compression:

Stored size: 811 Bytes

Contents

require "active_support/duration"
require "active_support/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
    ActiveSupport::Duration.months(self)
  end
  alias :month :months

  def years
    ActiveSupport::Duration.years(self)
  end
  alias :year :years
end

Version data entries

23 entries across 23 versions & 3 rubygems

Version Path
activesupport-5.1.7 lib/active_support/core_ext/integer/time.rb
activesupport-5.1.7.rc1 lib/active_support/core_ext/integer/time.rb
activesupport-5.1.6.2 lib/active_support/core_ext/integer/time.rb
activesupport-5.1.6.1 lib/active_support/core_ext/integer/time.rb
activesupport-5.1.6 lib/active_support/core_ext/integer/time.rb
tdiary-5.0.8 vendor/bundle/gems/activesupport-5.1.5/lib/active_support/core_ext/integer/time.rb
activesupport-5.1.5 lib/active_support/core_ext/integer/time.rb
activesupport-5.1.5.rc1 lib/active_support/core_ext/integer/time.rb
pract6-0.1.0 .gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/core_ext/integer/time.rb
activesupport-5.1.4 lib/active_support/core_ext/integer/time.rb
activesupport-5.1.4.rc1 lib/active_support/core_ext/integer/time.rb
activesupport-5.1.3 lib/active_support/core_ext/integer/time.rb
activesupport-5.1.3.rc3 lib/active_support/core_ext/integer/time.rb
activesupport-5.1.3.rc2 lib/active_support/core_ext/integer/time.rb
activesupport-5.1.3.rc1 lib/active_support/core_ext/integer/time.rb
tdiary-5.0.5 vendor/bundle/gems/activesupport-5.1.2/lib/active_support/core_ext/integer/time.rb
activesupport-5.1.2 lib/active_support/core_ext/integer/time.rb
activesupport-5.1.2.rc1 lib/active_support/core_ext/integer/time.rb
activesupport-5.1.1 lib/active_support/core_ext/integer/time.rb
activesupport-5.1.0 lib/active_support/core_ext/integer/time.rb