Class: Moonshot::StackConfig

Inherits:
Object
  • Object
show all
Defined in:
lib/moonshot/stack_config.rb

Overview

Configuration for the Moonshot::Stack class.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeStackConfig



8
9
10
11
# File 'lib/moonshot/stack_config.rb', line 8

def initialize
  @parent_stacks = []
  @show_all_events = false
end

Instance Attribute Details

#parameter_strategyObject

Returns the value of attribute parameter_strategy.



6
7
8
# File 'lib/moonshot/stack_config.rb', line 6

def parameter_strategy
  @parameter_strategy
end

#parent_stacksObject

Returns the value of attribute parent_stacks.



4
5
6
# File 'lib/moonshot/stack_config.rb', line 4

def parent_stacks
  @parent_stacks
end

#show_all_eventsObject

Returns the value of attribute show_all_events.



5
6
7
# File 'lib/moonshot/stack_config.rb', line 5

def show_all_events
  @show_all_events
end