# # = Ruby Whois # # An intelligent pure Ruby WHOIS client. # # # Category:: Net # Package:: Whois # Author:: Simone Carletti # License:: MIT License # #-- # #++ module Whois class Server module Adapters class Standard < Base def request(qstring) query_the_socket(qstring, host) end end end end end