add(words)
public

No documentation available.

# File activesupport/lib/active_support/inflector/inflections.rb, line 45
        def add(words)
          self.concat(words.flatten.map(&:downcase))
          @regex_array += self.map {|word|  to_regex(word) }
          self
        end