class VCR::Request::FiberAware

Provides fiber-awareness for the {VCR::Configuration#around_http_request} hook.

def proceed

Returns:
  • (VCR::Response) - the response from the request
def proceed
  Fiber.yield
end

def to_proc

Returns:
  • (Proc) - the proc
def to_proc
  proc { proceed }
end