Sha256: f6128ff6219ea1f9dd0d1107b75ef79c406315fbb1d2050fddd36a60a0b55202
Contents?: true
Size: 764 Bytes
Versions: 21
Compression:
Stored size: 764 Bytes
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/super_struct' module Whois class Answer # # = Registrar # # Holds the details of the Registrar extracted from the WHOIS answer. # # A Registrar is composed by the following attributes: # # * <tt>:id</tt>: # * <tt>:name</tt>: # * <tt>:organization</tt>: # * <tt>:url</tt>: # # Be aware that every WHOIS server can return a different number of details # or no details at all. # class Registrar < SuperStruct.new(:id, :name, :organization, :url) end end end
Version data entries
21 entries across 21 versions & 1 rubygems