class StructCore::Specfile::Scheme::ProfileAction

Attributes

build_configuration[RW]
inherit_environment[RW]
target_name[RW]

Public Class Methods

new(target_name, inherit_environment = false, build_configuration = nil) click to toggle source
# File lib/spec/spec_file.rb, line 305
def initialize(target_name, inherit_environment = false, build_configuration = nil)
        @target_name = target_name
        @inherit_environment = inherit_environment
        @build_configuration = build_configuration
end