module RuboCop::Formatter::TextUtil

def pluralize(number, thing, options = {})

def pluralize(number, thing, options = {})
  if number == 0 && options[:no_for_zero]
    "no #{thing}s"
  elsif number == 1
    "1 #{thing}"
  else
    "#{number} #{thing}s"
  end
end