The :response_request plugin gives the response access to the related request instance via the #request method.
plugin :response_requestSet the response's request to the current request.
def initialize(env)
super
@_response.request = @_request
end#.requestThe request related to this response. attr_accessor :request