aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/enumerable.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2009-08-09 19:03:09 +0200
committerPratik Naik <pratiknaik@gmail.com>2009-08-09 18:05:58 +0100
commite0adfa82c05f9c975005f102b4bcaebfcd17d241 (patch)
tree972d84e64e32570b2aba4e4d24e81f90b4b0045a /activesupport/lib/active_support/core_ext/enumerable.rb
parent1185500ff0465aff8686315f1b785884f133adcf (diff)
downloadrails-e0adfa82c05f9c975005f102b4bcaebfcd17d241.tar.gz
rails-e0adfa82c05f9c975005f102b4bcaebfcd17d241.tar.bz2
rails-e0adfa82c05f9c975005f102b4bcaebfcd17d241.zip
Optimize Range#sum only for integers [#2489]
Diffstat (limited to 'activesupport/lib/active_support/core_ext/enumerable.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/enumerable.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/core_ext/enumerable.rb b/activesupport/lib/active_support/core_ext/enumerable.rb
index d68eef8c23..42686cfbd5 100644
--- a/activesupport/lib/active_support/core_ext/enumerable.rb
+++ b/activesupport/lib/active_support/core_ext/enumerable.rb
@@ -113,9 +113,10 @@ module Enumerable
end
class Range #:nodoc:
- # Optimize range sum to use arithmetic progression if a block is not given.
+ # Optimize range sum to use arithmetic progression if a block is not given and
+ # we have a range of numeric values.
def sum(identity=0, &block)
- return super if block_given?
+ return super if block_given? || !(first.instance_of?(Integer) && last.instance_of?(Integer))
actual_last = exclude_end? ? (last - 1) : last
(actual_last - first + 1) * (actual_last + first) / 2
end