Sha256: 3a6ee7638e3eebb51bc74b22bffb5b0cc2b153a93be509a654c6993ae9581f0d

Contents?: true

Size: 673 Bytes

Versions: 6

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

6 entries across 6 versions & 1 rubygems

Version Path
whois-3.2.0 lib/whois/record/parser/whois.nic.cz.rb
whois-3.1.3 lib/whois/record/parser/whois.nic.cz.rb
whois-3.1.2 lib/whois/record/parser/whois.nic.cz.rb
whois-3.1.1 lib/whois/record/parser/whois.nic.cz.rb
whois-3.1.0 lib/whois/record/parser/whois.nic.cz.rb
whois-3.0.0 lib/whois/record/parser/whois.nic.cz.rb