class Whois::Record::Parser::WhoisUniregistryNet

Parser for the whois.donuts.com 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.uniregistry.net.rb, line 53
def build_contact(element, type)
  if (contact = super)
    contact.id = node("#{element} ID")
  end
  contact
end
parse_time(value) click to toggle source
# File lib/whois/record/parser/whois.uniregistry.net.rb, line 60
def parse_time(value)
  Time.parse(value).change(usec: 0)
end