Sha256: 6972f3798805c721dadfa0e57530ff7e6ed8f2af2570151a897577c76d874415

Contents?: true

Size: 609 Bytes

Versions: 7

Compression:

Stored size: 609 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.
    #
    class Part < SuperStruct.new(:response, :host)
    end

  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
whois-1.3.5 lib/whois/answer/part.rb
whois-1.3.4 lib/whois/answer/part.rb
whois-1.3.3 lib/whois/answer/part.rb
whois-1.3.2 lib/whois/answer/part.rb
whois-1.3.1 lib/whois/answer/part.rb
whois-1.3.0 lib/whois/answer/part.rb
whois-1.2.2 lib/whois/answer/part.rb