Sha256: 6cfe14b13c85ef4365b91223cc4bd3723967cec11b2a233761a8e1c14c240cdd

Contents?: true

Size: 493 Bytes

Versions: 1

Compression:

Stored size: 493 Bytes

Contents

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


require_relative 'base_icb'


module Whois
  class Parsers

    # Parser for the whois.nic.tm server.
    #
    # @see Whois::Parsers::Example
    #   The Example parser for the list of all available methods.
    #
    class WhoisNicTm < BaseIcb

      property_not_supported :expires_on


      property_not_supported :nameservers

    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
whois-parser-1.1.0 lib/whois/parsers/whois.nic.tm.rb