class VCR::Configuration

def after_http_request(*filters)

Other tags:
    See: #around_http_request -
    See: #before_http_request -

Other tags:
    Yieldparam: response - the response from the request
    Yieldparam: request - the request that is being made

Other tags:
    Yield: - the callback

Parameters:
  • filters (optional splat of #to_proc) -- one or more filters to apply.
def after_http_request(*filters)
  super(*filters.map { |f| request_filter_from(f) })
end