new(list)
Create a new ParallelEach instance over list.
# File lib/minitest/parallel_each.rb, line 25 def initialize list @queue = Queue.new # *sigh*... the Queue api sucks sooo much... list.each { |i| @queue << i } N.times { @queue << nil } end