aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/range.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-03-21 04:30:28 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-03-21 04:39:53 -0700
commitbaf73e19a6f05fcb46c06d759b08f3cbe22ed1c9 (patch)
tree9d3b1e3cac3c123163baefd3658f6a79a260182a /activesupport/lib/active_support/core_ext/range.rb
parentb8d59b7f845b6de8b4359900f228efc13e7d1ee5 (diff)
downloadrails-baf73e19a6f05fcb46c06d759b08f3cbe22ed1c9.tar.gz
rails-baf73e19a6f05fcb46c06d759b08f3cbe22ed1c9.tar.bz2
rails-baf73e19a6f05fcb46c06d759b08f3cbe22ed1c9.zip
Convert Range extension module to a class reopen
Diffstat (limited to 'activesupport/lib/active_support/core_ext/range.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/range.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/range.rb b/activesupport/lib/active_support/core_ext/range.rb
index 0253239748..638fba0c6b 100644
--- a/activesupport/lib/active_support/core_ext/range.rb
+++ b/activesupport/lib/active_support/core_ext/range.rb
@@ -1,2 +1,4 @@
+require 'active_support/core_ext/range/overlaps'
+
require 'active_support/core_ext/util'
-ActiveSupport.core_ext Range, %w(conversions overlaps include_range blockless_step)
+ActiveSupport.core_ext Range, %w(conversions include_range blockless_step)