Module: Sfn::CommandModule::Base
- Included in:
- Sfn::Command::Create, Sfn::Command::Describe, Sfn::Command::Destroy, Sfn::Command::Events, Sfn::Command::Export, Sfn::Command::Import, Sfn::Command::Inspect, Sfn::Command::List, Sfn::Command::Print, Sfn::Command::Promote, Sfn::Command::Update, Sfn::Command::Validate
- Defined in:
- lib/sfn/command_module/base.rb
Overview
Base module for CLIs
Defined Under Namespace
Modules: InstanceMethods
Class Method Summary collapse
Class Method Details
.included(klass) ⇒ Object
167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
# File 'lib/sfn/command_module/base.rb', line 167 def included(klass) klass.instance_eval do include Sfn::CommandModule::Base::InstanceMethods include Sfn::CommandModule::Callbacks include Sfn::Utils::JSON include Sfn::Utils::Output include Bogo::AnimalStrings include Bogo::Memoization include Bogo::Constants end end |