class StructCore::Specfile::Scheme::LaunchAction
Attributes
arguments[RW]
build_configuration[RW]
environment[RW]
simulate_location[RW]
target_name[RW]
Public Class Methods
new(target_name, simulate_location = false, arguments = '', environment = {}, build_configuration = nil)
click to toggle source
# File lib/spec/spec_file.rb, line 283 def initialize(target_name, simulate_location = false, arguments = '', environment = {}, build_configuration = nil) @target_name = target_name @simulate_location = simulate_location @arguments = arguments @environment = environment @build_configuration = build_configuration end