aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-03-26 13:20:47 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-03-26 13:20:47 +0000
commitabfa14d825c8eeb8e1ba33b6c9168445ec48f248 (patch)
treec7f3a4164e37d6f46f5bb2b1b4c6268768bf662d /activesupport/CHANGELOG
parent87b1d3834f135390375f2fa06e9b2a22ade0b5cb (diff)
downloadrails-abfa14d825c8eeb8e1ba33b6c9168445ec48f248.tar.gz
rails-abfa14d825c8eeb8e1ba33b6c9168445ec48f248.tar.bz2
rails-abfa14d825c8eeb8e1ba33b6c9168445ec48f248.zip
Fixed Inflector.pluralize to handle capitalized words #932 [bitsweat]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@998 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/CHANGELOG')
-rw-r--r--activesupport/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index 8168f989b1..9adac58cdf 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Fixed Inflector.pluralize to handle capitalized words #932 [bitsweat]
+
* Added Object#suppress which allows you to make a saner choice around with exceptions to swallow #980. Example:
suppress(ZeroDivisionError) { 1/0 }