aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/range/cover.rb
diff options
context:
space:
mode:
authorDiego Carrion <dc.rec1@gmail.com>2011-02-19 21:13:07 -0200
committerSantiago Pastorino <santiago@wyeworks.com>2011-02-19 23:24:30 -0200
commitb0da0dd8345b68a4e54c52e398cc65bbc0c4fbb5 (patch)
treeafa3ac149ebd946cf4ecff1571fcf078247075ac /activesupport/lib/active_support/core_ext/range/cover.rb
parent289cc15f1a89a179116f67e5f666f4ff6d645f03 (diff)
downloadrails-b0da0dd8345b68a4e54c52e398cc65bbc0c4fbb5.tar.gz
rails-b0da0dd8345b68a4e54c52e398cc65bbc0c4fbb5.tar.bz2
rails-b0da0dd8345b68a4e54c52e398cc65bbc0c4fbb5.zip
added Range#count? for Ruby 1.8
Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
Diffstat (limited to 'activesupport/lib/active_support/core_ext/range/cover.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/range/cover.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/range/cover.rb b/activesupport/lib/active_support/core_ext/range/cover.rb
new file mode 100644
index 0000000000..3a182cddd2
--- /dev/null
+++ b/activesupport/lib/active_support/core_ext/range/cover.rb
@@ -0,0 +1,3 @@
+class Range
+ alias_method(:cover?, :include?) unless instance_methods.include?(:cover?)
+end