Class: Crowbar::Client::App::Barclamp

Inherits:
Base
  • Object
show all
Defined in:
lib/crowbar/client/app/barclamp.rb

Overview

A Thor based CLI wrapper for barclamp commands

Instance Method Summary collapse

Methods inherited from Base

banner, handle_argument_error, #initialize

Constructor Details

This class inherits a constructor from Crowbar::Client::App::Base

Instance Method Details

#listObject

Barclamp list command

It will print out a list of the available barclamps on the target cloud. You can display the list in different output formats and you can filter the list by any search criteria.



78
79
80
81
82
83
84
# File 'lib/crowbar/client/app/barclamp.rb', line 78

def list
  Command::Barclamp::List.new(
    *command_params
  ).execute
rescue => e
  catch_errors(e)
end