Skip to Content Skip to Search
Methods
#
A
D
N
U

Class Public methods

new()

# File activesupport/lib/active_support/inflector/inflections.rb, line 32
def initialize
  @regex_array = []
  super
end

Instance Public methods

<<(*word)

# File activesupport/lib/active_support/inflector/inflections.rb, line 42
def <<(*word)
  add(word)
end

add(words)

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

delete(entry)

# File activesupport/lib/active_support/inflector/inflections.rb, line 37
def delete(entry)
  super entry
  @regex_array.delete(to_regex(entry))
end

uncountable?(str)

# File activesupport/lib/active_support/inflector/inflections.rb, line 53
def uncountable?(str)
  @regex_array.any? { |regex| regex.match? str }
end