module SSHScan

Constants

VERSION

Public Class Methods

make_attributes(array) click to toggle source

A helper to turn array of strings into arrays of attributes for quick comparison

# File lib/ssh_scan/attribute.rb, line 5
def self.make_attributes(array)
  array.map {|item| SSHScan::Attribute.new(item)}
end