Sha256: 100ab09c6222dc9a4c4ddfb6be78b37164127048f4c174a7b00ab2fbe645e3d8
Contents?: true
Size: 1.8 KB
Versions: 2
Compression:
Stored size: 1.8 KB
Contents
# # = Ruby Whois # # An intelligent pure Ruby WHOIS client and parser. # # # Category:: Net # Package:: Whois # Author:: Simone Carletti <weppos@weppos.net>, Moritz Heidkamp <moritz.heidkamp@bevuta.com> # License:: MIT License # #-- # #++ require 'whois/answer/parser/base' module Whois class Answer class Parser # # = whois.co.ug parser # # Parser for the whois.co.ug server. # # NOTE: This parser is just a stub and provides only a few basic methods # to check for domain availability and get domain status. # Please consider to contribute implementing missing methods. # See WhoisNicIt parser for an explanation of all available methods # and examples. # class WhoisCoUg < Base property_supported :status do @status ||= content_for_scanner[/^Status:\s+(.+)$/, 1] end property_supported :available? do @available ||= !!(content_for_scanner =~ /No entries found for the selected source/) end property_supported :registered? do !available? end property_supported :created_on do @created_on ||= if content_for_scanner =~ /Registered:\s+(.+)$/ Time.parse($1) end end property_supported :updated_on do @updated_on ||= if content_for_scanner =~ /Updated:\s+(.+)$/ DateTime.strptime($1, '%d/%m/%Y %H:%M:%S').to_time end end property_supported :expires_on do @expires_on ||= if content_for_scanner =~ /Expiry:\s(.+)$/ Time.parse($1) end end property_supported :nameservers do @nameservers ||= content_for_scanner.scan(/Nameserver:\s+(.+)$/).flatten.map(&:downcase) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
whois-1.3.6 | lib/whois/answer/parser/whois.co.ug.rb |
whois-1.3.5 | lib/whois/answer/parser/whois.co.ug.rb |