class RuboCop::Server::ClientCommand::Status

@api private
This class is a client command to show server process status.

def run

def run
  if Server.running?
    puts "RuboCop server (#{Cache.pid_path.read}) is running."
  else
    puts 'RuboCop server is not running.'
  end
end