Sha256: ba622be4786780d3322a141c03a14b09aa451ee5883cfb9ac8195157d1fa6a3c
Contents?: true
Size: 779 Bytes
Versions: 1
Compression:
Stored size: 779 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/, pattern_throttled: /^You have exceeded your quota of queries\./, } def response_throttled? !!node("response:throttled") end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
whois-3.5.4 | lib/whois/record/parser/whois.markmonitor.com.rb |