Module: Sfn::CommandModule::Stack

Overview

Stack handling helper methods

Defined Under Namespace

Modules: ClassMethods, InstanceMethods

Class Method Summary collapse

Class Method Details

.included(klass) ⇒ Object

Load methods into class and define options

Parameters:

  • klass (Class)


374
375
376
377
378
379
380
# File 'lib/sfn/command_module/stack.rb', line 374

def self.included(klass)
  klass.class_eval do
    extend Sfn::CommandModule::Stack::ClassMethods
    include Sfn::CommandModule::Stack::InstanceMethods
    include Utils::StackParameterValidator
  end
end