class VCR::Configuration

def start_new_fiber_for(request, fibers, fiber_errors, hook_declaration, proc)

def start_new_fiber_for(request, fibers, fiber_errors, hook_declaration, proc)
  fiber = create_fiber_for(fiber_errors, hook_declaration, proc)
  fibers[Thread.current] = fiber
  fiber.resume(Request::FiberAware.new(request))
end