Sha256: b05f4b6b4bf623ae34a5b31eb057558cff01c91acb582c97295b7b13fa548507
Contents?: true
Size: 620 Bytes
Versions: 3
Compression:
Stored size: 620 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_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
3 entries across 3 versions & 1 rubygems