class Stacker::Stack::Component

an abstract base class for stack components (template, parameters)

Attributes

stack[R]

Public Class Methods

new(stack) click to toggle source
# File lib/stacker/stack/component.rb, line 10
def initialize stack
  @stack = stack
end

Private Instance Methods

client() click to toggle source
# File lib/stacker/stack/component.rb, line 16
def client
  stack.client
end