# File lib/whois/record/scanners/base.rb, line 73 def _scan_lines_to_hash(pattern) lines = {} while @input.scan(pattern) lines.merge! @input[1].strip => @input[2].strip end lines end