lib/whois/parsers/whois.nic.ve.rb in whois-parser-1.2.0 vs lib/whois/parsers/whois.nic.ve.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'
@@ -26,17 +26,17 @@
#
class WhoisNicVe < Base
property_supported :status do
if content_for_scanner =~ /Estatus del dominio: (.+?)\n/
- case $1.downcase
- when "activo"
- :registered
- when "suspendido"
- :inactive
- else
- Whois::Parser.bug!(ParserError, "Unknown status `#{$1}'.")
+ case ::Regexp.last_match(1).downcase
+ when "activo"
+ :registered
+ when "suspendido"
+ :inactive
+ else
+ Whois::Parser.bug!(ParserError, "Unknown status `#{::Regexp.last_match(1)}'.")
end
else
:available
end
end
@@ -50,28 +50,28 @@
end
property_supported :created_on do
if content_for_scanner =~ /Fecha de Creacion: (.+?)\n/
- parse_time($1)
+ parse_time(::Regexp.last_match(1))
end
end
property_supported :updated_on do
if content_for_scanner =~ /Ultima Actualizacion: (.+?)\n/
- parse_time($1)
+ parse_time(::Regexp.last_match(1))
end
end
property_supported :expires_on do
if content_for_scanner =~ /Fecha de Vencimiento: (.+?)\n/
- parse_time($1)
+ parse_time(::Regexp.last_match(1))
end
end
property_supported :nameservers do
if content_for_scanner =~ /Servidor\(es\) de Nombres de Dominio:\n\n((.+\n)+)\n/
- $1.scan(/-\s(.*?)\n/).flatten.map do |name|
+ ::Regexp.last_match(1).scan(/-\s(.*?)\n/).flatten.map do |name|
Parser::Nameserver.new(:name => name)
end
end
end