Methods
#
A
D
N
U
Class Public methods
new()
# File activesupport/lib/active_support/inflector/inflections.rb, line 31
def initialize
  @regex_array = []
  super
end
Instance Public methods
<<(*word)
# File activesupport/lib/active_support/inflector/inflections.rb, line 41
def <<(*word)
  add(word)
end
add(words)
# 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
delete(entry)
# File activesupport/lib/active_support/inflector/inflections.rb, line 36
def delete(entry)
  super entry
  @regex_array.delete(to_regex(entry))
end
uncountable?(str)
# File activesupport/lib/active_support/inflector/inflections.rb, line 51
def uncountable?(str)
  @regex_array.any? { |regex| regex === str }
end