class Rack::Lint::Wrapper

def check_status(status)

#
# === The Status
#
# == The Response
#
def check_status(status)
  ## This is an HTTP status. It must be an Integer greater than or equal to
  ## 100.
  unless status.is_a?(Integer) && status >= 100
    raise LintError, "Status must be an Integer >=100"
  end
end