Sha256: 6f3e45a0dcce201a7b1fb7c5009d360c28ef500d738ca7fc7ee1d1dc12134d4d
Contents?: true
Size: 669 Bytes
Versions: 12
Compression:
Stored size: 669 Bytes
Contents
#-- # Ruby Whois # # An intelligent pure Ruby WHOIS client and parser. # # Copyright (c) 2009-2014 Simone Carletti <weppos@weppos.net> #++ require 'whois/record/parser/base_icann_compliant' module Whois class Record class Parser # Parser for the whois.rrpproxy.net server. # # @see Whois::Record::Parser::Example # The Example parser for the list of all available methods. # class WhoisRrpproxyNet < BaseIcannCompliant self.scanner = Scanners::BaseIcannCompliant, { pattern_available: /^No match for "[\w\.]+"\.\n/ } property_not_supported :expires_on end end end end
Version data entries
12 entries across 12 versions & 1 rubygems