class Whois::Record::Parser::WhoisRnidsRs
Parser for the whois.rnids.rs 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.rnids.rs.rb, line 112 def build_contact(element, type) node(element) do |hash| Record::Contact.new( :type => type, :id => nil, :name => hash[element], :organization => nil, :address => hash["Address"], :city => nil, :zip => nil, :state => nil, :country => nil, :country_code => nil, :phone => nil, :fax => nil, :email => nil ) end end