class Bundler::ParallelWorkers::UnixWorker

def stop_workers

Kill the forked workers by sending SIGINT to them
def stop_workers
  @workers.each do |worker|
    worker.io_r.close
    worker.io_w.close
    Process.kill :INT, worker.pid
  end
  @workers.each do |worker|
    Process.waitpid worker.pid
  end
end