Module: StringInflection::Methods::Plural

Extended by:
StringInflection::Method
Defined in:
lib/string_inflection/methods/plural.rb

Constant Summary collapse

SINGULAR_PATTERNS =
[
  [/([sxz])$/i, '\1es'],
  [/y$/i, 'ies'],
  [/(m)an$/i, '\1en'],
]

Method Summary

Methods included from StringInflection::Method

[]