instiki/vendor/rails/activesupport/lib/active_support/core_ext/range/overlaps.rb
Jacques Distler 5292899c9a Rails 2.1 RC1
Updated Instiki to Rails 2.1 RC1 (aka 2.0.991).
2008-05-17 23:22:34 -05:00

16 lines
422 B
Ruby

module ActiveSupport #:nodoc:
module CoreExtensions #:nodoc:
module Range #:nodoc:
# Check if Ranges overlap.
module Overlaps
# Compare two ranges and see if they overlap eachother
# (1..5).overlaps?(4..6) # => true
# (1..5).overlaps?(7..9) # => false
def overlaps?(other)
include?(other.first) || other.include?(first)
end
end
end
end
end