Ruby: Kill all threads

In case you spam a lot of threads and dont know how to get rid of them…

Thread.list.each do |thread|
  thread.exit unless thread == Thread.current
end

Leave a comment