module PactBroker::Api::Resources::AfterReply

Public Instance Methods

after_reply(&block) click to toggle source

@param [Callable] block the block to execute after the response has been sent to the user.

# File lib/pact_broker/api/resources/after_reply.rb, line 9
def after_reply(&block)
  PactBroker::Async::AfterReply.new(request.env).execute(&block)
end