class Whois::Parsers::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/parsers/whois.nic.sn.rb, line 102
def build_contact(string, type)
  Parser::Contact.new(
      :type => type,
      :id => string,
      :name => string
  )
end