Module: Sfn::CommandModule::Template
- Included in:
- Sfn::Command::Create, Sfn::Command::Update, Sfn::Command::Validate
- Defined in:
- lib/sfn/command_module/template.rb
Overview
Template handling helper methods
Defined Under Namespace
Modules: ClassMethods, InstanceMethods
Constant Summary collapse
- TEMPLATE_IGNORE_DIRECTORIES =
cloudformation directories that should be ignored
%w(components dynamics registry)
Class Method Summary collapse
-
.included(klass) ⇒ Object
Load methods into class and define options.
Class Method Details
.included(klass) ⇒ Object
Load methods into class and define options
298 299 300 301 302 303 304 |
# File 'lib/sfn/command_module/template.rb', line 298 def self.included(klass) klass.class_eval do extend Sfn::CommandModule::Template::ClassMethods include Sfn::CommandModule::Template::InstanceMethods include Sfn::Utils::PathSelector end end |