class Whois::Record::Parser::WhoisAudnsNetAu

Parser for the whois.audns.net.au server.

@see Whois::Record::Parser::Example

The Example parser for the list of all available methods.

Private Instance Methods

build_contact(element, type) click to toggle source
# File lib/whois/record/parser/whois.audns.net.au.rb, line 98
def build_contact(element, type)
  node("#{element} ID") do |str|
    Record::Contact.new(
      :type         => type,
      :id           => str,
      :name         => node("#{element} Name"),
      :organization => nil,
      :address      => nil,
      :city         => nil,
      :zip          => nil,
      :state        => nil,
      :country      => nil,
      :phone        => nil,
      :fax          => nil,
      :email        => node("#{element} Email")
    )
  end
end