aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/range.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-03-28 23:48:27 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-03-28 23:48:27 -0700
commitfce68161a47656d2bb3619d3fbf3773b80e9c139 (patch)
treeef34bb896dab889bfe7539a8690134cdd2d8cf47 /activesupport/lib/active_support/core_ext/range.rb
parent5d5cde4b02a91d23fcac3c381d14e8d2716717ed (diff)
downloadrails-fce68161a47656d2bb3619d3fbf3773b80e9c139.tar.gz
rails-fce68161a47656d2bb3619d3fbf3773b80e9c139.tar.bz2
rails-fce68161a47656d2bb3619d3fbf3773b80e9c139.zip
Convert Range conversions extension module to class reopen
Diffstat (limited to 'activesupport/lib/active_support/core_ext/range.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/range.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/range.rb b/activesupport/lib/active_support/core_ext/range.rb
index 638fba0c6b..8879519e7c 100644
--- a/activesupport/lib/active_support/core_ext/range.rb
+++ b/activesupport/lib/active_support/core_ext/range.rb
@@ -1,4 +1,5 @@
+require 'active_support/core_ext/range/conversions'
require 'active_support/core_ext/range/overlaps'
require 'active_support/core_ext/util'
-ActiveSupport.core_ext Range, %w(conversions include_range blockless_step)
+ActiveSupport.core_ext Range, %w(include_range blockless_step)