class StructCore::Specfile::Target::RunScript

Attributes

inputs[RW]
outputs[RW]
script_path[RW]
shell[RW]

Public Class Methods

new(script_path, inputs = [], outputs = [], shell = nil) click to toggle source
# File lib/spec/spec_file.rb, line 118
def initialize(script_path, inputs = [], outputs = [], shell = nil)
        @script_path = script_path
        @inputs = inputs
        @outputs = outputs
        @shell = shell
end