#-- # Ruby Whois # # An intelligent pure Ruby WHOIS client and parser. # # Copyright (c) 2009-2018 Simone Carletti #++ 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