Method: ActiveSupport::Inflector::Inflections#plural
- Defined in:
- lib/active_support/inflector/inflections.rb
#plural(rule, replacement) ⇒ Object
Specifies a new pluralization 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.
151 152 153 154 155 |
# File 'lib/active_support/inflector/inflections.rb', line 151 def plural(rule, replacement) @uncountables.delete(rule) if rule.is_a?(String) @uncountables.delete(replacement) @plurals.prepend([rule, replacement]) end |