Sha256: 13feb273a2321df7fdd04d4764fa0f18242e76a716a28125c774a27ab0521440
Contents?: true
Size: 1.63 KB
Versions: 28
Compression:
Stored size: 1.63 KB
Contents
# # = Ruby Whois # # An intelligent pure Ruby WHOIS client and parser. # # # Category:: Net # Package:: Whois # Author:: Simone Carletti <weppos@weppos.net> # License:: MIT License # #-- # #++ require 'whois/answer/parser/base' module Whois class Answer class Parser # # = whois.ripe.net parser # # Parser for the whois.ripe.net server. # # NOTE: This parser is just a stub and provides only a few basic methods # to check for domain availability and get domain status. # Please consider to contribute implementing missing methods. # See WhoisNicIt parser for an explanation of all available methods # and examples. # class WhoisRipeNet < Base property_supported :status do if available? :available else :registered end end property_supported :available? do @available ||= !!(content_for_scanner =~ /no entries found/) end property_supported :registered? do !available? end property_not_supported :created_on property_not_supported :updated_on property_not_supported :expires_on # Nameservers are listed in the following formats: # # nserver: ns.nic.mc # nserver: ns.nic.mc 195.78.6.131 # # In both cases, always return only the name. property_supported :nameservers do @nameservers ||= content_for_scanner.scan(/nserver:\s+(.+)\n/).flatten.map { |value| value.split(" ").first.downcase } end end end end end
Version data entries
28 entries across 28 versions & 1 rubygems