Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 4868

Show
Ignore:
Timestamp:
08/30/06 13:04:37 (2 years ago)
Author:
bitsweat
Message:

Inflections: don't singularize -ies plurals.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/activesupport/CHANGELOG

    r4837 r4868  
    11*SVN* 
     2 
     3* Inflections: don't singularize -ies plurals.  [foamdino@gmail.com, Mark Van Holstyn] 
    24 
    35* Update Initializer to use load_once_paths to avoid plugin reloading. References #5852. [Nicholas Seckar] 
  • trunk/activesupport/lib/active_support/inflections.rb

    r4668 r4868  
    1212  inflect.plural(/(hive)$/i, '\1s') 
    1313  inflect.plural(/([^aeiouy]|qu)y$/i, '\1ies') 
    14   inflect.plural(/([^aeiouy]|qu)ies$/i, '\1y') 
    1514  inflect.plural(/(x|ch|ss|sh)$/i, '\1es') 
    1615  inflect.plural(/(matr|vert|ind)ix|ex$/i, '\1ices')