class StructCore::Specfile::Scheme
Attributes
analyze_action[RW]
archive_action[RW]
build_action[RW]
launch_action[RW]
name[RW]
profile_action[RW]
test_action[RW]
Public Class Methods
new(name, build_action = nil, test_action = nil, launch_action = nil, archive_action = nil, profile_action = nil, analyze_action = nil)
click to toggle source
# File lib/spec/spec_file.rb, line 227 def initialize(name, build_action = nil, test_action = nil, launch_action = nil, archive_action = nil, profile_action = nil, analyze_action = nil) @name = name @build_action = build_action @test_action = test_action @launch_action = launch_action @archive_action = archive_action @profile_action = profile_action @analyze_action = analyze_action end