Sha256: 233915cda3d9e93e170bd84957263d40e0bfdb1efe8f36efe0085abfe87a6b21

Contents?: true

Size: 878 Bytes

Versions: 42

Compression:

Stored size: 878 Bytes

Contents

# frozen_string_literal: true

require "active_support/time_with_zone"
require "active_support/deprecation"

module ActiveSupport
  module IncludeTimeWithZone #:nodoc:
    # Extends the default Range#include? to support ActiveSupport::TimeWithZone.
    #
    #   (1.hour.ago..1.hour.from_now).include?(Time.current) # => true
    #
    def include?(value)
      if self.begin.is_a?(TimeWithZone) || self.end.is_a?(TimeWithZone)
        ActiveSupport::Deprecation.warn(<<-MSG.squish)
          Using `Range#include?` to check the inclusion of a value in
          a date time range is deprecated.
          It is recommended to use `Range#cover?` instead of `Range#include?` to
          check the inclusion of a value in a date time range.
        MSG
        cover?(value)
      else
        super
      end
    end
  end
end

Range.prepend(ActiveSupport::IncludeTimeWithZone)

Version data entries

42 entries across 42 versions & 7 rubygems

Version Path
activesupport-6.1.7.10 lib/active_support/core_ext/range/include_time_with_zone.rb
activesupport-6.1.7.9 lib/active_support/core_ext/range/include_time_with_zone.rb
activesupport-6.1.7.8 lib/active_support/core_ext/range/include_time_with_zone.rb
activesupport-6.1.7.7 lib/active_support/core_ext/range/include_time_with_zone.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activesupport-6.1.6.1/lib/active_support/core_ext/range/include_time_with_zone.rb
activesupport-6.1.7.6 lib/active_support/core_ext/range/include_time_with_zone.rb
activesupport-6.1.7.5 lib/active_support/core_ext/range/include_time_with_zone.rb
activesupport-6.1.7.4 lib/active_support/core_ext/range/include_time_with_zone.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activesupport-6.1.6.1/lib/active_support/core_ext/range/include_time_with_zone.rb
activesupport-6.1.7.3 lib/active_support/core_ext/range/include_time_with_zone.rb
activesupport-6.1.7.2 lib/active_support/core_ext/range/include_time_with_zone.rb
activesupport-6.1.7.1 lib/active_support/core_ext/range/include_time_with_zone.rb
activesupport-6.1.7 lib/active_support/core_ext/range/include_time_with_zone.rb
activesupport-6.1.6.1 lib/active_support/core_ext/range/include_time_with_zone.rb
activesupport-6.1.6 lib/active_support/core_ext/range/include_time_with_zone.rb
activesupport-6.1.5.1 lib/active_support/core_ext/range/include_time_with_zone.rb
activesupport-6.1.5 lib/active_support/core_ext/range/include_time_with_zone.rb
activesupport-6.1.4.7 lib/active_support/core_ext/range/include_time_with_zone.rb
activesupport-6.1.4.6 lib/active_support/core_ext/range/include_time_with_zone.rb
activesupport-6.1.4.5 lib/active_support/core_ext/range/include_time_with_zone.rb