class Rack::Lint
Validates your application and the requests and responses according to the Rack spec. See SPEC.rdoc for details.
Public Instance Methods
Source
# File lib/rack/lint.rb, line 15 def call(env = nil) Wrapper.new(@app, env).response end
Invoke the application, validating the request and response according to the Rack spec.