Sha256: b9033e8a2366d777eadee65cdb583ca8d2193faa104b94775a88983f59ccd33b

Contents?: true

Size: 673 Bytes

Versions: 2

Compression:

Stored size: 673 Bytes

Contents

#--
# Ruby Whois
#
# An intelligent pure Ruby WHOIS client and parser.
#
# Copyright (c) 2009-2013 Simone Carletti <weppos@weppos.net>
#++


require 'whois/record/parser/base_whoisd'


module Whois
  class Record
    class Parser

      # Parser for the whois.nic.cz server.
      #
      # @see Whois::Record::Parser::Example
      #   The Example parser for the list of all available methods.
      #
      class WhoisNicCz < BaseWhoisd
        self.status_mapping = {
          "paid and in zone" => :registered,
          "update prohibited" => :registered,
          "expired" => :expired,
          "to be deleted" => :expired,
        }
      end

    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
whois-3.3.0 lib/whois/record/parser/whois.nic.cz.rb
whois-3.2.1 lib/whois/record/parser/whois.nic.cz.rb