Sha256: cf2489692d3c26699d0c5fb6031cebbabe565a0ce7315e607508758b543a1666
Contents?: true
Size: 827 Bytes
Versions: 8
Compression:
Stored size: 827 Bytes
Contents
#-- # Ruby Whois # # An intelligent pure Ruby WHOIS client and parser. # # Copyright (c) 2009-2013 Simone Carletti <weppos@weppos.net> #++ require 'whois/record/scanners/base' module Whois class Record module Scanners # Scanner for the whois.fi record. class WhoisFi < Base self.tokenizers += [ :skip_empty_line, :scan_available, :scan_disclaimer, :scan_keyvalue, ] tokenizer :scan_available do if @input.skip(/^Domain not found/) @ast["status:available"] = true end end tokenizer :scan_disclaimer do if @input.match?(/^More information/) @ast["field:disclaimer"] = @input.scan_until(/(.*)\n\n/).strip end end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems