Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Inflections: don't singularize -ies plurals.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4868 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
jeremy committed Aug 30, 2006
1 parent d34a346 commit 7635fac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 2 additions & 0 deletions activesupport/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*

* Inflections: don't singularize -ies plurals. [foamdino@gmail.com, Mark Van Holstyn]

* Update Initializer to use load_once_paths to avoid plugin reloading. References #5852. [Nicholas Seckar]

* Use Array#assoc in ActiveSupport::OrderedHash. [Mauricio Fernandez]
Expand Down
1 change: 0 additions & 1 deletion activesupport/lib/active_support/inflections.rb
Expand Up @@ -11,7 +11,6 @@
inflect.plural(/(?:([^f])fe|([lr])f)$/i, '\1\2ves')
inflect.plural(/(hive)$/i, '\1s')
inflect.plural(/([^aeiouy]|qu)y$/i, '\1ies')
inflect.plural(/([^aeiouy]|qu)ies$/i, '\1y')
inflect.plural(/(x|ch|ss|sh)$/i, '\1es')
inflect.plural(/(matr|vert|ind)ix|ex$/i, '\1ices')
inflect.plural(/([m|l])ouse$/i, '\1ice')
Expand Down

0 comments on commit 7635fac

Please sign in to comment.