Rack

Rack provides a minimal interface between webservers supporting Ruby and Ruby frameworks. This might seem a fairly simple thing, but it gives us a lot of power. One of the things it enables is Rack Middleware which is a filter that can be used to intercept a request and alter the response as a request is made to an application.

To use Rack, provide an app: an object that responds to the call method, taking the environment hash as a parameter, and returning an Array with three elements:

  • The HTTP response code
  • A Hash of headers
  • The response body, which must respond to each
1/33
Rack Rack provides a minimal interface between webservers supporting Ruby and Ruby frameworks. This might seem a fairly simple thing, but it gives us a lot of power. One of the things it enables is Rack Middleware which is a filter that can be used to intercept a request and alter the response as a request is made to an application. To use Rack, provide an app: an object that responds to the call method, taking the environment hash as a parameter, and returning an Array with three elements: The HTTP response code A Hash of headers The response body, which must respond to each