require 'website_check_exception' class WebsiteCheck < Check def type "Website" end def perform_check to_fetch = URI(uri) Net::HTTP.get(to_fetch) end end