lib/whois/parsers/base_afilias.rb in whois-parser-1.2.0 vs lib/whois/parsers/base_afilias.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'
require 'whois/scanners/base_afilias'
@@ -103,14 +103,14 @@
private
def build_contact(element, type)
node("#{element} ID") do
- address = ["", "1", "2", "3"].
- map { |i| node("#{element} Street#{i}") }.
- delete_if { |i| i.nil? || i.empty? }.
- join("\n")
+ address = ["", "1", "2", "3"]
+ .map { |i| node("#{element} Street#{i}") }
+ .delete_if { |i| i.nil? || i.empty? }
+ .join("\n")
Parser::Contact.new(
:type => type,
:id => node("#{element} ID"),
:name => node("#{element} Name"),
@@ -127,10 +127,10 @@
end
end
def decompose_registrar(value)
if value =~ /(.+?) \((.+?)\)/
- [$2, $1]
+ [::Regexp.last_match(2), ::Regexp.last_match(1)]
end
end
end