Sha256: f74d38e807855c083ada760f10b36a04aae94b8473e36ef3cf60aae71908ef3b

Contents?: true

Size: 823 Bytes

Versions: 5

Compression:

Stored size: 823 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.nc record.
      #
      # @since 2.4.0
      class WhoisNc < Base

        self.tokenizers += [
            :skip_empty_line,
            :skip_more,
            :scan_available,
            :scan_keyvalue,
        ]


        MORES = ['Whois \.NC', 'more details on']

        tokenizer :scan_available do
          if @input.skip(/^No entries found .+\n/)
            @ast["status:available"] = true
          end
        end

        tokenizer :skip_more do
          MORES.any? { |more| @input.skip(/^#{more}.*\n/) }
        end

      end

    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
whois-2.6.2 lib/whois/record/scanners/whois.nc.rb
whois-2.6.1 lib/whois/record/scanners/whois.nc.rb
whois-2.6.0 lib/whois/record/scanners/whois.nc.rb
whois-2.5.1 lib/whois/record/scanners/whois.nc.rb
whois-2.5.0 lib/whois/record/scanners/whois.nc.rb