Sha256: c5315b21ab27816e3e980f93a5cd7e09690450c6c911f21c1e4e7370e1339ff9
Contents?: true
Size: 765 Bytes
Versions: 1
Compression:
Stored size: 765 Bytes
Contents
#-- # Ruby Whois # # An intelligent pure Ruby WHOIS client and parser. # # Copyright (c) 2009-2015 Simone Carletti <weppos@weppos.net> #++ require 'whois/record/parser/base_afilias' module Whois class Record class Parser # Parser for the whois.dotproregistry.net server. # # @see Whois::Record::Parser::Example # The Example parser for the list of all available methods. # class WhoisDotproregistryNet < BaseAfilias property_supported :status do if reserved? :reserved else super() end end # NEWPROPERTY def reserved? !!content_for_scanner.match(/Governmental Reserved Name/) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
whois-3.6.5 | lib/whois/record/parser/whois.dotproregistry.net.rb |