Sha256: a770cce15e34f86d89b390b19392c72f8f4b5c1c247c0426e2b5130df33f1933
Contents?: true
Size: 780 Bytes
Versions: 9
Compression:
Stored size: 780 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 # #-- # #++ require 'whois/answer/super_struct' module Whois class Answer # # = Part # # A single <tt>Whois::Answer</tt> fragment. For instance, # in case of thin server, a <tt>Whois::Answer</tt> may be composed by # one or more parts corresponding to all responses # returned by the WHOIS servers. # # A <tt>Part</tt> is composed by the following attributes: # # * body - The body containing the whois output. # * host - The host which returned the body. # class Part < SuperStruct.new(:body, :host) end end end
Version data entries
9 entries across 9 versions & 1 rubygems