Sha256: 284fc0c499ce9b03d805bae83005d36f5c8ad86a96868d745760202131b561a7

Contents?: true

Size: 386 Bytes

Versions: 2

Compression:

Stored size: 386 Bytes

Contents

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


require_relative 'base_cocca'


module Whois
  class Parsers

    # Parser for the whois.netcom.cm server.
    class WhoisNetcomCm < BaseCocca

      self.status_mapping.merge!({
          "suspended" => :registered
      })

    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
whois-parser-1.2.0 lib/whois/parsers/whois.netcom.cm.rb
whois-parser-1.1.0 lib/whois/parsers/whois.netcom.cm.rb