require 'fiber' module Junkie module Helper def in_fiber(&block) Fiber.new { block.call }.resume end end end