Class: AppCommand::CloudFormationDelete
- Inherits:
-
Convoy::ActionCommand::Base
- Object
- Convoy::ActionCommand::Base
- AppCommand::CloudFormationDelete
- Defined in:
- lib/routes/cloudformation_delete.rb
Instance Method Summary collapse
Instance Method Details
#execute ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/routes/cloudformation_delete.rb', line 5 def execute begin @opts = @args = arguments opts_validate opts_routing rescue => e Blufin::Terminal::print_exception(e) end end |
#opts_routing ⇒ Object
27 28 29 30 31 32 33 |
# File 'lib/routes/cloudformation_delete.rb', line 27 def opts_routing # TODO - IMPLEMENT raise RuntimeError, 'Not yet implemented! Delete.' end |
#opts_validate ⇒ Object
23 24 25 |
# File 'lib/routes/cloudformation_delete.rb', line 23 def opts_validate end |