Sha256: c8814083981cae7c457881ada326bab3e3c1cdf79bc3ee8a0a0b875ca2711a66
Contents?: true
Size: 615 Bytes
Versions: 6
Compression:
Stored size: 615 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 WhoisMarkmonitorCom < BaseIcannCompliant self.scanner = Scanners::BaseIcannCompliant, { pattern_available: /^No match for/ } end end end end
Version data entries
6 entries across 6 versions & 1 rubygems