Sha256: 06cb56301e547201e64f3ce2e3d384abffd22d65abb9fbed6bcd02c7567c5230

Contents?: true

Size: 1007 Bytes

Versions: 189

Compression:

Stored size: 1007 Bytes

Contents

module ActiveSupport #:nodoc:
  module CoreExtensions #:nodoc:
    module Range #:nodoc:
      # Check if a Range includes another Range.
      module IncludeRange
        def self.included(base) #:nodoc:
          base.alias_method_chain :include?, :range
        end

        # Extends the default Range#include? to support range comparisons.
        #  (1..5).include?(1..5) # => true
        #  (1..5).include?(2..3) # => true
        #  (1..5).include?(2..6) # => false
        #
        # The native Range#include? behavior is untouched.
        #  ("a".."f").include?("c") # => true
        #  (5..9).include?(11) # => false
        def include_with_range?(value)
          if value.is_a?(::Range)
            operator = exclude_end? ? :< : :<=
            end_value = value.exclude_end? ? last.succ : last
            include?(value.first) && (value.last <=> end_value).send(operator, 0)
          else
            include_without_range?(value)
          end
        end
      end
    end
  end
end

Version data entries

189 entries across 156 versions & 24 rubygems

Version Path
3mix-castronaut-0.5.0.2 vendor/activesupport/lib/active_support/core_ext/range/include_range.rb
masover-castronaut-0.4.4.4 vendor/activesupport/lib/active_support/core_ext/range/include_range.rb
masover-castronaut-0.4.4.5 vendor/activesupport/lib/active_support/core_ext/range/include_range.rb
masover-castronaut-0.5.0.1 vendor/activesupport/lib/active_support/core_ext/range/include_range.rb
p8-castronaut-0.6.1.1 vendor/activesupport/lib/active_support/core_ext/range/include_range.rb
relevance-castronaut-0.4.1 vendor/activesupport/lib/active_support/core_ext/range/include_range.rb
relevance-castronaut-0.4.2 vendor/activesupport/lib/active_support/core_ext/range/include_range.rb
relevance-castronaut-0.4.3 vendor/activesupport/lib/active_support/core_ext/range/include_range.rb
relevance-castronaut-0.4.4 vendor/activesupport/lib/active_support/core_ext/range/include_range.rb
relevance-castronaut-0.4.5 vendor/activesupport/lib/active_support/core_ext/range/include_range.rb
relevance-castronaut-0.4.6 vendor/activesupport/lib/active_support/core_ext/range/include_range.rb
relevance-castronaut-0.5.0 vendor/activesupport/lib/active_support/core_ext/range/include_range.rb
relevance-castronaut-0.5.1 vendor/activesupport/lib/active_support/core_ext/range/include_range.rb
relevance-castronaut-0.5.2 vendor/activesupport/lib/active_support/core_ext/range/include_range.rb
relevance-castronaut-0.5.3 vendor/activesupport/lib/active_support/core_ext/range/include_range.rb
relevance-castronaut-0.5.4 vendor/activesupport/lib/active_support/core_ext/range/include_range.rb
relevance-castronaut-0.6.0 vendor/activesupport/lib/active_support/core_ext/range/include_range.rb
relevance-castronaut-0.6.1 vendor/activesupport/lib/active_support/core_ext/range/include_range.rb
relevance-castronaut-0.7.4 vendor/activesupport/lib/active_support/core_ext/range/include_range.rb
relevance-castronaut-0.7.5 vendor/activesupport/lib/active_support/core_ext/range/include_range.rb