aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG.md
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2011-12-02 13:00:03 +0100
committerDavid Heinemeier Hansson <david@loudthinking.com>2011-12-02 13:00:56 +0100
commit4d20de8a50d889a09e6f5642984775fe796ca943 (patch)
tree10f22611c7b0b50a39ea57800500701d58538da7 /activesupport/CHANGELOG.md
parent76a3ec7f6e348681e4bafa8b02ca660ab450b0ee (diff)
downloadrails-4d20de8a50d889a09e6f5642984775fe796ca943.tar.gz
rails-4d20de8a50d889a09e6f5642984775fe796ca943.tar.bz2
rails-4d20de8a50d889a09e6f5642984775fe796ca943.zip
Added Enumerable#pluck to wrap the common pattern of collect(&:method) *DHH*
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r--activesupport/CHANGELOG.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index be829222ff..7f1103a6d7 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,7 +1,9 @@
## Rails 3.2.0 (unreleased) ##
-* Module#synchronize is deprecated with no replacement. Please use `monitor`
- from ruby's standard library.
+* Added Enumerable#pluck to wrap the common pattern of collect(&:method) *DHH*
+
+* Module#synchronize is deprecated with no replacement. Please use `monitor`
+ from ruby's standard library.
* (Date|DateTime|Time)#beginning_of_week accept an optional argument to
be able to set the day at which weeks are assumed to start.