class RuboCop::CLI::Command::ExecuteRunner

def display_error_summary(errors)

def display_error_summary(errors)
  return if errors.empty?
  warn Rainbow("\n#{pluralize(errors.size, 'error')} occurred:").red
  errors.each { |error| warn error }
  warn <<~WARNING
    Errors are usually caused by RuboCop bugs.
    Please, report your problems to RuboCop's issue tracker.
    #{Gem.loaded_specs['rubocop'].metadata['bug_tracker_uri']}
    Mention the following information in the issue report:
    #{RuboCop::Version.version(debug: true)}
  WARNING
end