aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/enumerable.rb
Commit message (Expand)AuthorAgeFilesLines
* Perfomance fix for Enumerable#index_bylvl0nax2016-05-141-1/+3
* Use original `Array#sum` to speed up calculatingyui-knk2016-05-071-4/+8
* Fix initial value effects for sum along to ruby 2.4Kenta Murata2016-04-301-5/+7
* Remove `Array#sum` method before override ityui-knk2016-04-241-0/+2
* Ruby 2.4 Array#sum: fix non-numeric #sum feature detectionJeremy Daer2016-04-191-1/+1
* Ruby 2.4: compat with new Array#sumJeremy Daer2016-04-181-0/+14
* Change Enumerable#sum to use inject(:sym) specificationT.J. Schuck2015-11-191-1/+1
* Allow Enumerable#pluck to take a splat.Kevin Deisz2015-05-291-2/+9
* Add Enumerable#pluck.Kevin Deisz2015-05-281-0/+8
* Use include? instead of in? for Enumerable#without.Juanito Fatas2015-03-021-1/+1
* Add Enumerable#withoutTodd Bealmear2015-03-011-0/+11
* Return sized enumerator from Enumerable#index_byMarc-Andre Lafortune2014-02-051-1/+1
* Return sized enumerator from Batches#find_eachMarc-Andre Lafortune2014-02-051-1/+1
* update AS/core_ext docs [ci skip]Francesco Rodriguez2012-09-121-5/+6
* Fix Range#sum optimized versionAlexey Vakhov2012-05-251-2/+6
* removing unnecessary 'examples' noise from activesupportFrancesco Rodriguez2012-05-131-2/+2
* String quotes and trailing spacesAlexey Gaziev2012-04-291-1/+1
* AS core_ext refactoring pt.2Alexey Gaziev2012-04-291-3/+6
* AS core_ext refactoringAlexey Gaziev2012-04-291-3/+6
* remove Enumerable#each_with_object againSergey Nartimov2011-12-231-21/+0
* remove conflict markerVijay Dev2011-12-231-1/+0
* Revert "Added Enumerable#pluck to wrap the common pattern of collect(&:method...Aaron Patterson2011-12-221-5/+20
* remove Enumerable#each_with_object from core_ext as it is present in ruby 1.9lest2011-12-211-21/+0
* Initial pass at removing dead 1.8.x code from Active Support.José Valim2011-12-201-37/+0
* Added Enumerable#pluck to wrap the common pattern of collect(&:method) *DHH*David Heinemeier Hansson2011-12-021-0/+7
* docs formatting changesVijay Dev2011-09-011-2/+2
* Trivial optimization for Enumerable#each_with_objectMarc-Andre Lafortune2011-07-231-2/+2
* Insure that Enumerable#index_by, group_by, ... return EnumeratorsMarc-Andre Lafortune2011-07-231-0/+3
* Make Enumerable#many? iterate only over what is necessaryMarc-Andre Lafortune2011-07-231-3/+10
* Make Enumerable#many? not rely on #sizeMarc-Andre Lafortune2011-07-231-2/+2
* #many? uses count instead of select - a bit fasterJulius Markūnas2011-07-111-1/+1
* Clarify comment by removing french reference ('a la'). Should improve readabi...Ben Orenstein2011-03-051-1/+1
* speed up index_by by removing a lolinjectAaron Patterson2010-10-011-4/+1
* Deletes trailing whitespaces (over text files only find * -type f -exec sed '...Santiago Pastorino2010-08-141-4/+4
* edit pass to apply API guideline wrt the use of "# =>" in example codeXavier Noria2010-07-301-1/+2
* Add Enumerable#exclude? to bring parity to Enumerable#include? and avoid if !...David Heinemeier Hansson2009-12-141-0/+5
* Enumerable#none? is not needed for Ruby >= 1.8.7Xavier Noria2009-11-091-9/+0
* Remove unnecessary &block from Range#sum and add tests for (num..float).sumPratik Naik2009-08-091-1/+1
* Optimize Range#sum only for integers [#2489]José Valim2009-08-091-2/+3
* Optimize Range#sum to use arithmetic progression when a block is not given [#...José Valim2009-08-091-0/+9
* Enumerable#sum now works will all enumerables, even if they don't respond to ...Marc-Andre Lafortune2009-08-081-4/+2
* Merge docrailsPratik Naik2009-07-251-1/+1
* Simplify Enumerable#each_with_objectJeremy Kemper2009-03-211-4/+3
* Enumerable#none? conforms to Ruby 1.8.7 behaviorJeremy Kemper2008-11-191-3/+3
* Update doc to make more senseDavid Heinemeier Hansson2008-11-191-1/+1
* Added Enumerable#none? to check that none of the elements match the block [#1...Damian Janowski2008-11-191-0/+9
* Don't shadow arg with block varJeremy Kemper2008-09-081-2/+2
* Add each_with_object from 1.9 for a more convenient alternative to inject.Adam Keys2008-09-031-1/+21
* Added block-handling to Enumerable#many? (Damian Janowski) [#452 state:resolved]David Heinemeier Hansson2008-06-201-1/+3
* Change Enumberal#several? to Enumberal#many?David Heinemeier Hansson2008-06-131-1/+1