Sha256: 06542e7937c2f53115a650cd23d66948e10791e1562f82fa072d3f7827401675
Contents?: true
Size: 626 Bytes
Versions: 3
Compression:
Stored size: 626 Bytes
Contents
#-- # Ruby Whois # # An intelligent pure Ruby WHOIS client and parser. # # Copyright (c) 2009-2015 Simone Carletti <weppos@weppos.net> #++ require 'whois/record/scanners/base' module Whois class Record module Scanners # Scanner for the whois.dns.hr record. class WhoisDnsHr < Base self.tokenizers += [ :skip_empty_line, :scan_available, :scan_keyvalue, ] tokenizer :scan_available do if @input.skip(/^%ERROR: no entries found\n/) @ast["status:available"] = true end end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
whois-3.6.5 | lib/whois/record/scanners/whois.dns.hr.rb |
whois-3.6.4 | lib/whois/record/scanners/whois.dns.hr.rb |
whois-3.6.3 | lib/whois/record/scanners/whois.dns.hr.rb |