aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/range/include_range.rb
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2007-10-08 06:05:44 +0000
committerMichael Koziarski <michael@koziarski.com>2007-10-08 06:05:44 +0000
commit99c64829ce71ecf07b576960ea8ff01dfee61be7 (patch)
treed9da774856c45c18c68f2cc8f6b92b331fcebf47 /activesupport/lib/active_support/core_ext/range/include_range.rb
parentc2602354d10e3ceeb10a7f38dc4ff2f838badba2 (diff)
downloadrails-99c64829ce71ecf07b576960ea8ff01dfee61be7.tar.gz
rails-99c64829ce71ecf07b576960ea8ff01dfee61be7.tar.bz2
rails-99c64829ce71ecf07b576960ea8ff01dfee61be7.zip
* Add Range#overlaps?(range), Range#include?(range), and Range#step without a block. [brandon] Closes #9746
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7800 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/lib/active_support/core_ext/range/include_range.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/range/include_range.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/range/include_range.rb b/activesupport/lib/active_support/core_ext/range/include_range.rb
new file mode 100644
index 0000000000..a6b4e9ff64
--- /dev/null
+++ b/activesupport/lib/active_support/core_ext/range/include_range.rb
@@ -0,0 +1,24 @@
+module ActiveSupport #:nodoc:
+ module CoreExtensions #:nodoc:
+ module Range #:nodoc:
+ # Check if a Range includes another Range
+ module IncludeRange
+
+ def self.included(klass) #:nodoc:
+ klass.send(:alias_method_chain, :include?, :range)
+ end
+
+ 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 \ No newline at end of file