Sha256: 9415f54d3ca590d0de57c5ef94a46cfa9630c57bb238ea6a10b4633223d3714e

Contents?: true

Size: 811 Bytes

Versions: 12

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

12 entries across 12 versions & 2 rubygems

Version Path
files.com-1.0.55 docs/vendor/bundle/ruby/2.5.0/gems/activesupport-5.0.7.1/lib/active_support/core_ext/integer/time.rb
activesupport-5.0.7.2 lib/active_support/core_ext/integer/time.rb
activesupport-5.0.7.1 lib/active_support/core_ext/integer/time.rb
activesupport-5.0.7 lib/active_support/core_ext/integer/time.rb
activesupport-5.0.6 lib/active_support/core_ext/integer/time.rb
activesupport-5.0.6.rc1 lib/active_support/core_ext/integer/time.rb
activesupport-5.0.5 lib/active_support/core_ext/integer/time.rb
activesupport-5.0.5.rc2 lib/active_support/core_ext/integer/time.rb
activesupport-5.0.5.rc1 lib/active_support/core_ext/integer/time.rb
activesupport-5.0.4 lib/active_support/core_ext/integer/time.rb
activesupport-5.0.4.rc1 lib/active_support/core_ext/integer/time.rb
activesupport-5.0.3 lib/active_support/core_ext/integer/time.rb