class Spring::Client::Run

def call

def call
  boot_server unless env.server_running?
  verify_server_version
  application, client = UNIXSocket.pair
  connect_to_application(client)
  run_command(client, application)
rescue Errno::ECONNRESET
  exit 1
ensure
  server.close if @server
end