class Protocol::HTTP::Response

def redirection?

Whether the status is considered a redirection.
def redirection?
	@status and @status >= 300 && @status < 400
end