aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG.md
diff options
context:
space:
mode:
authorDavid Graham <dgraham@github.com>2012-10-16 13:05:25 -0600
committerDavid Graham <dgraham@github.com>2012-10-26 11:36:35 -0600
commitf38e752bdf27668faf1125479f815832484c0a72 (patch)
treeece0c6c0c6959edcba2e8fed61aea84dc8a7b60c /activesupport/CHANGELOG.md
parent6ac33f9e4b4dbfe34f9884d7b262a7ba2c3356e1 (diff)
downloadrails-f38e752bdf27668faf1125479f815832484c0a72.tar.gz
rails-f38e752bdf27668faf1125479f815832484c0a72.tar.bz2
rails-f38e752bdf27668faf1125479f815832484c0a72.zip
Implement replace method so key? works correctly.
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r--activesupport/CHANGELOG.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index 23e2ce0b03..4b06210c4a 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,5 +1,7 @@
## Rails 4.0.0 (unreleased) ##
+* Implement HashWithIndifferentAccess#replace so key? works correctly. *David Graham*
+
* Hash#extract! returns only those keys that present in the receiver.
{:a => 1, :b => 2}.extract!(:a, :x) # => {:a => 1}