Sha256: 19e175eaba3b4e623c604598ee7aead3f0d01efbe7fdace84baecf7d56fc5e76
Contents?: true
Size: 973 Bytes
Versions: 9
Compression:
Stored size: 973 Bytes
Contents
require_relative 'super_struct' module Whois class Parser # 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
9 entries across 9 versions & 2 rubygems