Sha256: 760354f689f117a1e5f0c37c90bcfb42b2cceb9dcdedfa5859c2c1c676ebb3b0
Contents?: true
Size: 1.1 KB
Versions: 3
Compression:
Stored size: 1.1 KB
Contents
#-- # Ruby Whois # # An intelligent pure Ruby WHOIS client and parser. # # Copyright (c) 2009-2018 Simone Carletti <weppos@weppos.net> #++ module Whois class Server module Adapters # # = None Adapter # # Special adapter intended to be used when a WHOIS interface # doesn't exist for given query. # For example, the domain authority for some TLD doesn't offer # any way to query for WHOIS data. # # In case the authority provides only a web based interface, # you should use the {Whois::Server::Adapters::Web} adapter. # # Every query for an object associated to a {Whois::Server::Adapters::None} # adapter raises a {Whois::NoInterfaceError} exception. # class None < Base # Always raises a {Whois::NoInterfaceError} exception. # # @param [String] string # @return [void] # # @raise [Whois::NoInterfaceError] For every request. # def request(string) raise NoInterfaceError, "This `#{type}' has no whois server" end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
whois-4.0.8 | lib/whois/server/adapters/none.rb |
whois-4.0.7 | lib/whois/server/adapters/none.rb |
whois-4.0.6 | lib/whois/server/adapters/none.rb |