Class: Crowbar::Client::Command::Proposal::Create
- Includes:
- Mixin::Barclamp
- Defined in:
- lib/crowbar/client/command/proposal/create.rb
Overview
Implementation for the proposal create 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
38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/crowbar/client/command/proposal/create.rb', line 38 def execute args. request.process do |request| case request.code when 200 say "Successfully created #{args.proposal} proposal" else err request.parsed_response["error"] end end end |