Class: Crowbar::Client::Command::Proposal::Reset
- Includes:
- Mixin::Barclamp, Mixin::SimpleError
- Defined in:
- lib/crowbar/client/command/proposal/reset.rb
Overview
Implementation for the proposal reset command
Instance Attribute Summary
Attributes inherited from Base
#args, #options, #stderr, #stdin, #stdout
Instance Method Summary collapse
Methods inherited from Base
Constructor Details
This class inherits a constructor from Crowbar::Client::Command::Base
Instance Method Details
#execute ⇒ Object
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/crowbar/client/command/proposal/reset.rb', line 34 def execute args. request.process do |request| case request.code when 200 say "Successfully reset #{args.proposal} proposal" when 404 say "Proposal does not exist" else err format_error( request.parsed_response["error"] ) end end end |