class Rack::Lint
def check_status(status)
def check_status(status) ## This is an HTTP status. When parsed as integer (+to_i+), it must be ## greater than or equal to 100. unless status.to_i >= 100 raise LintError, "Status must be >=100 seen as integer" end end