class Protocol::Rack::Rewindable

def make_environment(request)

@returns [Hash] The Rack environment hash.
@parameter request [Protocol::HTTP::Request] The request to create an environment from.

Delegates to the wrapped middleware.
Create a Rack environment from the request.
def make_environment(request)
	@delegate.make_environment(request)
end