Class: Crowbar::Client::Command::Server::Api
- Includes:
- Mixin::Barclamp
- Defined in:
- lib/crowbar/client/command/server/api.rb
Overview
Implementation for the server API 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
33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/crowbar/client/command/server/api.rb', line 33 def execute args. request.process do |request| case request.code when 200 say JSON.pretty_generate( content_from(request) ) else err request.parsed_response["error"] end end end |