lib/whois/parsers/whois.dns.pt.rb in whois-parser-1.2.0 vs lib/whois/parsers/whois.dns.pt.rb in whois-parser-2.0.0
- old
+ new
@@ -1,11 +1,11 @@
#--
# Ruby Whois
#
# An intelligent pure Ruby WHOIS client and parser.
#
-# Copyright (c) 2009-2018 Simone Carletti <weppos@weppos.net>
+# Copyright (c) 2009-2022 Simone Carletti <weppos@weppos.net>
#++
require_relative 'base'
@@ -23,20 +23,20 @@
# The Example parser for the list of all available methods.
#
class WhoisDnsPt < Base
property_supported :status do
- if content_for_scanner =~ /^Estado \/ Status:\s+(.+)\n/
- case $1.downcase
+ if content_for_scanner =~ %r{^Estado / Status:\s+(.+)\n}
+ case ::Regexp.last_match(1).downcase
when "active"
:registered
when "reserved"
:reserved
when "tech-pro"
:inactive
else
- Whois::Parser.bug!(ParserError, "Unknown status `#{$1}'.")
+ Whois::Parser.bug!(ParserError, "Unknown status `#{::Regexp.last_match(1)}'.")
end
else
:available
end
end
@@ -50,18 +50,18 @@
end
property_supported :created_on do
if content_for_scanner =~ / Creation Date .+?:\s+(.+)\n/
- Time.utc(*$1.split("/").reverse)
+ Time.utc(*::Regexp.last_match(1).split("/").reverse)
end
end
property_not_supported :updated_on
property_supported :expires_on do
if content_for_scanner =~ / Expiration Date .+?:\s+(.+)\n/
- Time.utc(*$1.split("/").reverse)
+ Time.utc(*::Regexp.last_match(1).split("/").reverse)
end
end
property_supported :nameservers do