Changeset 4868
- Timestamp:
- 08/30/06 13:04:37 (2 years ago)
- Files:
-
- trunk/activesupport/CHANGELOG (modified) (1 diff)
- trunk/activesupport/lib/active_support/inflections.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/activesupport/CHANGELOG
r4837 r4868 1 1 *SVN* 2 3 * Inflections: don't singularize -ies plurals. [foamdino@gmail.com, Mark Van Holstyn] 2 4 3 5 * Update Initializer to use load_once_paths to avoid plugin reloading. References #5852. [Nicholas Seckar] trunk/activesupport/lib/active_support/inflections.rb
r4668 r4868 12 12 inflect.plural(/(hive)$/i, '\1s') 13 13 inflect.plural(/([^aeiouy]|qu)y$/i, '\1ies') 14 inflect.plural(/([^aeiouy]|qu)ies$/i, '\1y')15 14 inflect.plural(/(x|ch|ss|sh)$/i, '\1es') 16 15 inflect.plural(/(matr|vert|ind)ix|ex$/i, '\1ices')