Sha256: 464e8bf590a97df1f4018fc231197fa2142fa0c553da8efaad490e5c65081c06
Contents?: true
Size: 308 Bytes
Versions: 8
Compression:
Stored size: 308 Bytes
Contents
module Nmap # # Represents a match for a specific {OS}. # class OSMatch < Struct.new(:name, :accuracy) # # Converts the OS match to a String. # # @return [String] # The String form of the OS match. # def to_s "#{self.name} (#{self.accuracy}%)" end end end
Version data entries
8 entries across 8 versions & 1 rubygems