Sha256: f772ccb8892779e212c5b5484088ae50be86d95840689bf591582a86e5f08349
Contents?: true
Size: 824 Bytes
Versions: 8
Compression:
Stored size: 824 Bytes
Contents
#-- # Ruby Whois # # An intelligent pure Ruby WHOIS client and parser. # # Copyright (c) 2009-2012 Simone Carletti <weppos@weppos.net> #++ require 'whois/record/parser/base_afilias' module Whois class Record class Parser # Parser for the whois.publicinternetregistry.net server. class WhoisPublicinterestregistryNet < BaseAfilias # Checks whether the response has been throttled. # # @return [Boolean] # # @example # WHOIS LIMIT EXCEEDED - SEE WWW.PIR.ORG/WHOIS FOR DETAILS # def response_throttled? !!node("response:throttled") end private def decompose_registrar(value) if value =~ /(.+?) \((.+?)\)/ [$2, $1] end end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems