Получить код ответа http сервера

require 'net/http'
puts Net::HTTP.get_response('najomi.org', '/404.html').code
404

Сделать get запрос и распечатать его результат

require 'net/http'
require 'uri'
Net::HTTP.get_print URI.parse('http://www.example.com/index.html')
-----------