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