Class: VagrantPlugins::ProfitBricks::Command::ListImages
- Inherits:
-
Object
- Object
- VagrantPlugins::ProfitBricks::Command::ListImages
- Includes:
- Utils
- Defined in:
- lib/vagrant-profitbricks/command/images.rb
Instance Method Summary collapse
Methods included from Utils
Instance Method Details
#execute ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/vagrant-profitbricks/command/images.rb', line 10 def execute opts = OptionParser.new do |o| o. = 'Usage: vagrant profitbricks images' end argv = (opts) return unless argv compute = fog_pb(argv[0]) rows = [] compute.images.each do |image| rows << [ image.id, image.name, image.location ] end display_table(@env, %w[ID Name Location], rows) end |