I'm trying to use this with the parallel gem inside a thread and I get this error: "fiber called across threads" I'm doing something like this: ``` results = Parallel.map([1,2,3,4,5,6,7],:in_threads=>2) do |item| RandomWord.nouns.next end ```