class Rack::Lint

Validates your application and the requests and responses according to the Rack spec. See SPEC.rdoc for details.

Public Instance Methods

Invoke the application, validating the request and response according to the Rack spec.

# File lib/rack/lint.rb, line 15
def call(env = nil)
  Wrapper.new(@app, env).response
end