Sha256: acc02e5134d09517d522003bbd19160ad96afa5b9742b2e03e220a0d8e9c5f12

Contents?: true

Size: 1.09 KB

Versions: 10

Compression:

Stored size: 1.09 KB

Contents

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


require 'whois/record/super_struct'


module Whois
  class Record

    # Holds the details of the Name Servers extracted from the WHOIS response.
    #
    # A name server is composed by the several attributes,
    # accessible through corresponding getter / setter methods.
    #
    # Please note that a response is not required to provide
    # all the attributes. When an attribute is not available,
    # the corresponding value is set to nil.
    #
    # @attr [String] name
    # @attr [String] ipv4
    # @attr [String] ipv6
    #
    class Nameserver < SuperStruct.new(:name, :ipv4, :ipv6)

      # Returns a string representation of this object
      # composed by the host +name+.
      #
      # @example
      #   Nameserver.new(:name => "ns.example.com").to_s
      #   # => "ns.example.com"
      #   Nameserver.new.to_s
      #   # => ""
      #
      # @return [String] The string representation.
      def to_s
        name.to_s
      end

    end

  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
whois-2.2.0 lib/whois/record/nameserver.rb
whois-2.1.0 lib/whois/record/nameserver.rb
whois-2.0.7 lib/whois/record/nameserver.rb
whois-2.0.6 lib/whois/record/nameserver.rb
whois-2.0.5 lib/whois/record/nameserver.rb
whois-2.0.4 lib/whois/record/nameserver.rb
whois-2.0.3 lib/whois/record/nameserver.rb
whois-2.0.2 lib/whois/record/nameserver.rb
whois-2.0.1 lib/whois/record/nameserver.rb
whois-2.0.0 lib/whois/record/nameserver.rb