Sha256: 0b9cee78d84e77d493a6db452aa049cdd4180b626ca99209787a177915b34036
Contents?: true
Size: 654 Bytes
Versions: 1
Compression:
Stored size: 654 Bytes
Contents
#-- # Ruby Whois # # An intelligent pure Ruby WHOIS client and parser. # # Copyright (c) 2009-2012 Simone Carletti <weppos@weppos.net> #++ require 'whois/record/scanners/base' module Whois class Record module Scanners # Scanner for the whois.registry.om record. # # @since 2.6.0 class WhoisRegistryOm < Base self.tokenizers += [ :skip_empty_line, :scan_available, :scan_keyvalue, ] tokenizer :scan_available do if @input.skip(/^No Data Found\n/) @ast['status:available'] = true end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
whois-2.6.2 | lib/whois/record/scanners/whois.registry.om.rb |