index
:
rails.git
3-2-stable-for-hmno
master
Mirror of official rails repo with custom fixes.
Harald Eilertsen
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
activesupport
/
test
/
core_ext
/
enumerable_test.rb
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add Enumerable#index_with.
Kasper Timm Hansen
2018-05-21
1
-0
/
+15
*
[Active Support] `rubocop -a --only Layout/EmptyLineAfterMagicComment`
Koichi ITO
2017-07-11
1
-0
/
+1
*
Use frozen-string-literal in ActiveSupport
Kir Shatrov
2017-07-09
1
-0
/
+1
*
Revert "Merge pull request #29540 from kirs/rubocop-frozen-string"
Matthew Draper
2017-07-02
1
-1
/
+0
*
Enforce frozen string in Rubocop
Kir Shatrov
2017-07-01
1
-0
/
+1
*
Remove checks for Enumerator#size method
Eugene Kenny
2017-04-25
1
-4
/
+2
*
"Use assert_nil if expecting nil. This will fail in minitest 6."
Akira Matsuda
2016-12-25
1
-1
/
+1
*
Add more rubocop rules about whitespaces
Rafael Mendonça França
2016-10-29
1
-10
/
+10
*
Add three new rubocop rules
Rafael Mendonça França
2016-08-16
1
-8
/
+8
*
applies new string literal convention in activesupport/test
Xavier Noria
2016-08-06
1
-8
/
+8
*
Fix initial value effects for sum along to ruby 2.4
Kenta Murata
2016-04-30
1
-0
/
+78
*
Ruby 2.4: compat with new Array#sum
Jeremy Daer
2016-04-18
1
-3
/
+21
*
Allow Enumerable#pluck to take a splat.
Kevin Deisz
2015-05-29
1
-0
/
+9
*
Add Enumerable#pluck.
Kevin Deisz
2015-05-28
1
-0
/
+5
*
Use include? instead of in? for Enumerable#without.
Juanito Fatas
2015-03-02
1
-1
/
+0
*
Include object inclusion for enumerable test.
Juanito Fatas
2015-03-02
1
-0
/
+1
*
Add Enumerable#without
Todd Bealmear
2015-03-01
1
-0
/
+7
*
Pass symbol as an argument instead of a block
Erik Michaels-Ober
2014-11-29
1
-2
/
+2
*
Return sized enumerator from Enumerable#index_by
Marc-Andre Lafortune
2014-02-05
1
-0
/
+4
*
Remove obsolete test (builtin group_by is now used)
Marc-Andre Lafortune
2014-02-05
1
-20
/
+0
*
Remove obsolete line (was needed for Ruby 1.8.7 support)
Marc-Andre Lafortune
2014-02-05
1
-1
/
+0
*
Further simplify enumerable group_by test
Carlos Antonio da Silva
2013-04-04
1
-3
/
+1
*
Replaced inject with map
Anupam Choudhury
2013-04-04
1
-2
/
+2
*
Removed unused comma after loop variable
Anupam Choudhury
2013-04-04
1
-1
/
+1
*
Fix Range#sum optimized version
Alexey Vakhov
2012-05-25
1
-0
/
+5
*
use AS::TestCase as the base class
Aaron Patterson
2012-01-05
1
-1
/
+1
*
Revert "Added Enumerable#pluck to wrap the common pattern of collect(&:method...
Aaron Patterson
2011-12-22
1
-7
/
+0
*
remove Enumerable#each_with_object from core_ext as it is present in ruby 1.9
lest
2011-12-21
1
-10
/
+1
*
Added Enumerable#pluck to wrap the common pattern of collect(&:method) *DHH*
David Heinemeier Hansson
2011-12-02
1
-1
/
+8
*
Insure that Enumerable#index_by, group_by, ... return Enumerators
Marc-Andre Lafortune
2011-07-23
1
-1
/
+12
*
Make Enumerable#many? iterate only over what is necessary
Marc-Andre Lafortune
2011-07-23
1
-0
/
+7
*
Make Enumerable#many? not rely on #size
Marc-Andre Lafortune
2011-07-23
1
-1
/
+1
*
Test using generic Enumerables instead of arrays.
Marc-Andre Lafortune
2011-07-23
1
-24
/
+38
*
Make tests more precise
Marc-Andre Lafortune
2011-07-23
1
-14
/
+14
*
Deletes trailing whitespaces (over text files only find * -type f -exec sed '...
Santiago Pastorino
2010-08-14
1
-1
/
+1
*
Add Enumerable#exclude? to bring parity to Enumerable#include? and avoid if !...
David Heinemeier Hansson
2009-12-14
1
-0
/
+5
*
Enumerable#none? is not needed for Ruby >= 1.8.7
Xavier Noria
2009-11-09
1
-11
/
+0
*
Symbol#to_proc is not needed for Ruby >= 1.8.7
Xavier Noria
2009-11-09
1
-1
/
+0
*
Improving test coverage for Range#sum [#2489]
José Valim
2009-08-09
1
-1
/
+1
*
Remove unnecessary &block from Range#sum and add tests for (num..float).sum
Pratik Naik
2009-08-09
1
-0
/
+1
*
Make enumerable test run stand alone
Pratik Naik
2009-08-09
1
-0
/
+1
*
Optimize Range#sum only for integers [#2489]
José Valim
2009-08-09
1
-0
/
+1
*
Optimize Range#sum to use arithmetic progression when a block is not given [#...
José Valim
2009-08-09
1
-0
/
+2
*
Enumerable#sum now works will all enumerables, even if they don't respond to ...
Marc-Andre Lafortune
2009-08-08
1
-0
/
+4
*
Explicit test dependencies
Jeremy Kemper
2009-03-28
1
-0
/
+2
*
Enumerable#none? conforms to Ruby 1.8.7 behavior
Jeremy Kemper
2008-11-19
1
-1
/
+2
*
Added Enumerable#none? to check that none of the elements match the block [#1...
Damian Janowski
2008-11-19
1
-0
/
+10
*
Add each_with_object from 1.9 for a more convenient alternative to inject.
Adam Keys
2008-09-03
1
-0
/
+5
*
Added block-handling to Enumerable#many? (Damian Janowski) [#452 state:resolved]
David Heinemeier Hansson
2008-06-20
1
-2
/
+7
*
Change Enumberal#several? to Enumberal#many?
David Heinemeier Hansson
2008-06-13
1
-3
/
+3
[next]