Sha256: 845f53fe1d948d9988d32ef806014c0e86e433392a89196899ef9f0aed5db2fb
Contents?: true
Size: 842 Bytes
Versions: 15
Compression:
Stored size: 842 Bytes
Contents
#-- # Ruby Whois # # An intelligent pure Ruby WHOIS client and parser. # # Copyright (c) 2009-2014 Simone Carletti <weppos@weppos.net> #++ require 'whois/record/parser/base_afilias' module Whois class Record class Parser # Parser for the whois.aero server. # # @see Whois::Record::Parser::Example # The Example parser for the list of all available methods. # class WhoisAero < BaseAfilias property_supported :status do Array.wrap(node("Domain Status")) end property_supported :updated_on do node("Updated On") do |value| Time.parse(value) end end property_supported :expires_on do node("Expires On") do |value| Time.parse(value) end end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems