class RuboCop::Cop::Style::PreferredHashMethods

def proper_method_name(method_name)

def proper_method_name(method_name)
  if style == :verbose
    "has_#{method_name}"
  else
    method_name.to_s.sub(/has_/, '')
  end
end