Sha256: dd2aed196c5b8603cfd37b0c9ccd2edb610eb9a63926cf463c5105a5305b24b4
Contents?: true
Size: 620 Bytes
Versions: 12
Compression:
Stored size: 620 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.markmonitor.com server. # # @see Whois::Record::Parser::Example # The Example parser for the list of all available methods. # class WhoisCorporatedomainsCom < BaseIcannCompliant self.scanner = Scanners::BaseIcannCompliant, { pattern_available: /^No match for/ } end end end end
Version data entries
12 entries across 12 versions & 1 rubygems