Sha256: 5a3c73bad9b7413d82ed1f80164a42f57b2be138de75cf70580271c2f06e55bc
Contents?: true
Size: 512 Bytes
Versions: 1
Compression:
Stored size: 512 Bytes
Contents
#-- # Ruby Whois # # An intelligent pure Ruby WHOIS client and parser. # # Copyright (c) 2009-2013 Simone Carletti <weppos@weppos.net> #++ require 'whois/record/parser/base_icann_compliant' module Whois class Record class Parser # Parser for the whois.udag.net server. class WhoisUdagNet < BaseIcannCompliant self.scanner = Scanners::BaseIcannCompliant, { pattern_available: /^We could not find the requested domain on our system/ } end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
whois-3.4.0 | lib/whois/record/parser/whois.udag.net.rb |