Class: Moonshot::StackConfig
- Inherits:
-
Object
- Object
- Moonshot::StackConfig
- Defined in:
- lib/moonshot/stack_config.rb
Overview
Configuration for the Moonshot::Stack class.
Instance Attribute Summary collapse
-
#parent_stacks ⇒ Object
Returns the value of attribute parent_stacks.
-
#show_all_events ⇒ Object
Returns the value of attribute show_all_events.
Instance Method Summary collapse
-
#initialize ⇒ StackConfig
constructor
A new instance of StackConfig.
Constructor Details
#initialize ⇒ StackConfig
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_stacks ⇒ Object
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_events ⇒ Object
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 |