class Crowbar::Client::App::Barclamp

A Thor based CLI wrapper for barclamp commands

Public Instance Methods

list() click to toggle source

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.

# File lib/crowbar/client/app/barclamp.rb, line 78
def list
  Command::Barclamp::List.new(
    *command_params
  ).execute
rescue => e
  catch_errors(e)
end