class ActiveUtils::Connection

def handle_response(response)

def handle_response(response)
  if @ignore_http_status then
    return response.body
  else
    case response.code.to_i
    when 200...300
      response.body
    else
      raise ResponseError.new(response)
    end
  end
end