Method: Inflections#singular

Defined in:
lib/build/ExtendedString.rb

#singular(rule, replacement) ⇒ Object

Specifies a new singularization rule and its replacement. The rule can either be a string or a regular expression. The replacement should always be a string that may include references to the matched data from the rule.



123
124
125
126
127
# File 'lib/build/ExtendedString.rb', line 123

def singular(rule, replacement)
  @uncountables.delete(rule) if rule.is_a?(String)
  @uncountables.delete(replacement)
  @singulars.unshift([rule, replacement])
end