Sha256: 03d50f7a322748d668d13e6d871b16f8c447bfad842f9fc7cc61bb401a5e54cb

Contents?: true

Size: 683 Bytes

Versions: 15

Compression:

Stored size: 683 Bytes

Contents

#--
# Ruby Whois
#
# An intelligent pure Ruby WHOIS client and parser.
#
# Copyright (c) 2009-2014 Simone Carletti <weppos@weppos.net>
#++


require 'whois/record/super_struct'


module Whois
  class Record

    # A single {Whois::Record} fragment. For instance,
    # in case of *thin server*, a {Whois::Record} can be composed by
    # one or more parts corresponding to all responses
    # returned by the WHOIS servers.
    #
    # A part is composed by a +body+ and a +host+.
    #
    # @attr [String] body The body containing the WHOIS output.
    # @attr [String] host The host which returned the body.
    #
    class Part < SuperStruct.new(:body, :host)
    end

  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
whois-3.6.2 lib/whois/record/part.rb
whois-3.6.1 lib/whois/record/part.rb
whois-3.6.0 lib/whois/record/part.rb
whois-3.5.9 lib/whois/record/part.rb
whois-3.5.8 lib/whois/record/part.rb
whois-3.5.7 lib/whois/record/part.rb
whois-3.5.6 lib/whois/record/part.rb
whois-3.5.5 lib/whois/record/part.rb
whois-3.5.4 lib/whois/record/part.rb
whois-3.5.3 lib/whois/record/part.rb
whois-3.5.2 lib/whois/record/part.rb
whois-3.5.1 lib/whois/record/part.rb
whois-3.5.0 lib/whois/record/part.rb
whois-3.4.5 lib/whois/record/part.rb
whois-3.4.4 lib/whois/record/part.rb