class RuboCopConfigUpdater::CLI::Command::UnknownError

Public Instance Methods

run() click to toggle source
# File lib/rubocop_config_updater/cli/command/unknown_error.rb, line 9
def run
  puts "Don't know how to fix received errors with the following configuration:"
  puts "RuboCop command: #{options[:cmd]}"
  puts "RuboCop config path: #{options[:config_path]}"
  puts 'Errors:'
  puts stderr
  # raise "IMHRE"
  exit
end