= private = protected
pluralize(word)
Returns the plural form of the word in the string.
Examples:
"post".pluralize # => "posts" "octopus".pluralize # => "octopi" "sheep".pluralize # => "sheep" "words".pluralize # => "words" "CamelOctopus".pluralize # => "CamelOctopi"
# File activesupport/lib/active_support/inflector/methods.rb, line 24 def pluralize(word) apply_inflections(word, inflections.plurals) end