aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/enumerable.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2011-12-22 12:21:29 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2011-12-22 12:21:29 -0700
commitc0563cec6d87adafa99e3b86356c0e912e00030e (patch)
treefc8cec7685252c98788995ea2d8a1e9c70584e93 /activesupport/lib/active_support/core_ext/enumerable.rb
parent1945bafba2dba80ae0e5595127361fed8bb2d5de (diff)
downloadrails-c0563cec6d87adafa99e3b86356c0e912e00030e.tar.gz
rails-c0563cec6d87adafa99e3b86356c0e912e00030e.tar.bz2
rails-c0563cec6d87adafa99e3b86356c0e912e00030e.zip
Revert "Added Enumerable#pluck to wrap the common pattern of collect(&:method) *DHH*"
This reverts commit 4d20de8a50d889a09e6f5642984775fe796ca943.
Diffstat (limited to 'activesupport/lib/active_support/core_ext/enumerable.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/enumerable.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/activesupport/lib/active_support/core_ext/enumerable.rb b/activesupport/lib/active_support/core_ext/enumerable.rb
index d9856f2e84..9343bb7106 100644
--- a/activesupport/lib/active_support/core_ext/enumerable.rb
+++ b/activesupport/lib/active_support/core_ext/enumerable.rb
@@ -63,13 +63,6 @@ module Enumerable
end
end
- # Plucks the value of the passed method for each element and returns the result as an array. Example:
- #
- # people.pluck(:name) # => [ "David Heinemeier Hansson", "Jamie Heinemeier Hansson" ]
- def pluck(method)
- collect { |element| element.send(method) }
- end
-
# Iterates over a collection, passing the current element *and* the
# +memo+ to the block. Handy for building up hashes or
# reducing collections down to one object. Examples: