class Nmap::RunStat

Represents the runstats of a scan.

@since 0.7.0

Public Instance Methods

to_s() click to toggle source

Converts the stats to a String.

@return [String]

The String form of the scan.
# File lib/nmap/run_stat.rb, line 15
def to_s
  "#{self.end_time} #{self.elapsed} #{self.exit_status}"
end