Sha256: 93248c5f6d9528b63a3bb80efbe1577aac46c394e240f8b998b3c8d4ec4c8581

Contents?: true

Size: 485 Bytes

Versions: 8

Compression:

Stored size: 485 Bytes

Contents

#
# = Ruby Whois
#
# An intelligent pure Ruby WHOIS client and parser.
#
#
# Category::    Net
# Package::     Whois
# Author::      Simone Carletti <weppos@weppos.net>
# License::     MIT License
#
#--
#
#++


module Whois
  class Server
    module Adapters
      
      class NotImplemented < Base
        
        def request(qstring)
          raise ServerNotImplemented, "The `#{host}' feature has not been implemented yet."
        end
        
      end
      
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
whois-1.0.5 lib/whois/server/adapters/not_implemented.rb
whois-1.0.4 lib/whois/server/adapters/not_implemented.rb
whois-1.0.3 lib/whois/server/adapters/not_implemented.rb
whois-1.0.2 lib/whois/server/adapters/not_implemented.rb
whois-1.0.1 lib/whois/server/adapters/not_implemented.rb
whois-1.0.0 lib/whois/server/adapters/not_implemented.rb
whois-0.9.0 lib/whois/server/adapters/not_implemented.rb
whois-0.8.1 lib/whois/server/adapters/not_implemented.rb