Sha256: 4ec0d3f82ee3761f2dfd51a631dd3db5f5a4d86aaaea01355c385019954ac4de
Contents?: true
Size: 629 Bytes
Versions: 15
Compression:
Stored size: 629 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.1und1.info server. # # @see Whois::Record::Parser::Example # The Example parser for the list of all available methods. # class Whois1und1Info < BaseIcannCompliant self.scanner = Scanners::BaseIcannCompliant, { pattern_available: /^Domain (.+) is not registered here.\n/ } end end end end
Version data entries
15 entries across 15 versions & 1 rubygems