The following Ruby fiber raises a StopIteration exception the first time it is resumed, but not subsequently. Is it possible to make a fiber which raises the exception every time it is resumed?
f = Fiber.new do
while true
raise StopIteration
end
end