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
abiquo-etk-0.4.33 vendor/activesupport-2.3.8/lib/active_support/core_ext/range/include_range.rb
abiquo-etk-0.4.32 vendor/activesupport-2.3.8/lib/active_support/core_ext/range/include_range.rb
abiquo-etk-0.4.29 vendor/activesupport-2.3.8/lib/active_support/core_ext/range/include_range.rb
abiquo-etk-0.4.25 vendor/activesupport-2.3.8/lib/active_support/core_ext/range/include_range.rb
abiquo-etk-0.4.24 vendor/activesupport-2.3.8/lib/active_support/core_ext/range/include_range.rb
abiquo-etk-0.4.23 vendor/activesupport-2.3.8/lib/active_support/core_ext/range/include_range.rb
abiquo-etk-0.4.22 vendor/activesupport-2.3.8/lib/active_support/core_ext/range/include_range.rb
abiquo-etk-0.4.20 vendor/activesupport-2.3.8/lib/active_support/core_ext/range/include_range.rb
abiquo-etk-0.4.19 vendor/activesupport-2.3.8/lib/active_support/core_ext/range/include_range.rb
abiquo-etk-0.4.18 vendor/activesupport-2.3.8/lib/active_support/core_ext/range/include_range.rb
abiquo-etk-0.4.17 vendor/activesupport-2.3.8/lib/active_support/core_ext/range/include_range.rb
abiquo-etk-0.4.16 vendor/activesupport-2.3.8/lib/active_support/core_ext/range/include_range.rb
abiquo-etk-0.4.15 vendor/activesupport-2.3.8/lib/active_support/core_ext/range/include_range.rb
abiquo-etk-0.4.14 vendor/activesupport-2.3.8/lib/active_support/core_ext/range/include_range.rb
abiquo-etk-0.4.13 vendor/activesupport-2.3.8/lib/active_support/core_ext/range/include_range.rb
activesupport-2.3.10 lib/active_support/core_ext/range/include_range.rb
activesupport-2.3.9 lib/active_support/core_ext/range/include_range.rb
activesupport-2.3.9.pre lib/active_support/core_ext/range/include_range.rb
vibes-bj-1.2.2 spec/rails_root/vendor/rails/activesupport/lib/active_support/core_ext/range/include_range.rb
vibes-bj-1.2.1 spec/rails_root/vendor/rails/activesupport/lib/active_support/core_ext/range/include_range.rb