Module: StringInflection::Methods::Singular

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

Constant Summary collapse

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

Method Summary

Methods included from StringInflection::Method

[]