class Whois::Record::Parser::WhoisNicSn

whois.nic.sn parser

Parser for the whois.nic.sn server.

Private Instance Methods

build_contact(string, type) click to toggle source
# File lib/whois/record/parser/whois.nic.sn.rb, line 103
def build_contact(string, type)
  Record::Contact.new(
      :type => type,
      :id => string,
      :name => string
  )
end