instance method
singular
Ruby on Rails 4.1.16
Since v2.2.3Signature
singular(rule, replacement)
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.
Parameters
-
rulereq -
replacementreq
Source
# File activesupport/lib/active_support/inflector/inflections.rb, line 115
def singular(rule, replacement)
@uncountables.delete(rule) if rule.is_a?(String)
@uncountables.delete(replacement)
@singulars.prepend([rule, replacement])
end
Defined in activesupport/lib/active_support/inflector/inflections.rb line 115
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Inflector::Inflections