From 2997f9c7889f1afd7b1ee245f7289a781a5586dc Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 15 Jan 2005 13:43:48 +0000 Subject: [PATCH] Added Inflections as an extension on String, so Inflector.pluralize(Inflector.classify(name)) becomes name.classify.pluralize #476 [bitsweat] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@409 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activesupport/CHANGELOG | 2 ++ 1 file changed, 2 insertions(+) diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG index 9437c4a1d7950..15f48046b99c6 100644 --- a/activesupport/CHANGELOG +++ b/activesupport/CHANGELOG @@ -1,3 +1,5 @@ +* Added Inflections as an extension on String, so Inflector.pluralize(Inflector.classify(name)) becomes name.classify.pluralize #476 [bitsweat] + * Added Byte operations to Numeric, so 5.5.megabytes + 200.kilobytes #461 [Marcel Molina] * Fixed that Dependencies.reload can't load the same file twice #420 [Kent Sibilev]