Sha256: 0fa43df4a8e51e2809ec074555daece12f26cf16038a97853166105c8be63dfa
Contents?: true
Size: 713 Bytes
Versions: 6
Compression:
Stored size: 713 Bytes
Contents
#-- # Ruby Whois # # An intelligent pure Ruby WHOIS client and parser. # # Copyright (c) 2009-2015 Simone Carletti <weppos@weppos.net> #++ require_relative 'base_whoisd' require 'whois/scanners/whois.nic.cz.rb' module Whois class Parsers # Parser for the whois.nic.cz server. # # @see Whois::Parsers::Example # The Example parser for the list of all available methods. # class WhoisNicCz < BaseWhoisd self.scanner = Scanners::WhoisNicCz property_supported :status do if available? :available else :registered end end def response_throttled? !!node("response:throttled") end end end end
Version data entries
6 entries across 6 versions & 2 rubygems