Sha256: 34ec37f86c285292a84243d0ab5711eb2066d66e4bac4f4129552c1694f17779
Contents?: true
Size: 941 Bytes
Versions: 7
Compression:
Stored size: 941 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.cctld.by server. # # @author Aliaksei Kliuchnikau <aliaksei.kliuchnikau@gmail.com> class WhoisCctldBy < Base self.tokenizers += [ :skip_empty_line, :skip_dash_line, :scan_available, :scan_keyvalue, :skip_provider_signature, ] tokenizer :scan_available do if @input.skip(/^Object does not exist/) @ast["status:available"] = true end end tokenizer :skip_dash_line do @input.skip(/^-+\n/) end tokenizer :skip_provider_signature do @input.scan(/^(.+)\n/) end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems