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

Returns a new instance of StackConfig.



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

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

Instance Attribute Details

#parent_stacksObject

Returns the value of attribute parent_stacks.



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

def parent_stacks
  @parent_stacks
end

#show_all_eventsObject

Returns the value of attribute show_all_events.



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

def show_all_events
  @show_all_events
end