module WEBrick::HTTPStatus

def info?(code)

Is +code+ an informational status?
#
def info?(code)
  code.to_i >= 100 and code.to_i < 200
end