class Gauntlt::Attack

Attributes

runtime[RW]

Public Class Methods

new(path, tags=[], format="", outfile="") click to toggle source
# File lib/gauntlt/attack.rb, line 7
def initialize(path, tags=[], format="", outfile="")
  self.runtime = Runtime.new(path, tags, format, outfile)
end

Public Instance Methods

run() click to toggle source
# File lib/gauntlt/attack.rb, line 11
def run
  runtime.execute!
end