Sha256: 7fb50e8c590cd1aa1f44b049154d0146937836e7bb5733eed992ddf02e13a7c0

Contents?: true

Size: 638 Bytes

Versions: 40

Compression:

Stored size: 638 Bytes

Contents

module Brightbox
  desc I18n.t("images.desc")
  command [:images] do |cmd|

    cmd.desc I18n.t("images.destroy.desc")
    cmd.arg_name "image-id..."
    cmd.command [:destroy] do |c|

      c.action do |global_options, _options, args|

        if args.empty?
          raise "You must specify the images you want to destroy"
        end

        images = Image.find_or_call(args) do |id|
          raise "Couldn't find image #{id}"
        end

        images.each do |i|
          info "Destroying image #{i}"
          i.destroy
          i.reload
        end

        render_table(images, global_options)

      end
    end
  end
end

Version data entries

40 entries across 40 versions & 1 rubygems

Version Path
brightbox-cli-3.3.0 lib/brightbox-cli/commands/images/destroy.rb
brightbox-cli-3.2.0 lib/brightbox-cli/commands/images/destroy.rb
brightbox-cli-3.1.0 lib/brightbox-cli/commands/images/destroy.rb
brightbox-cli-3.0.1 lib/brightbox-cli/commands/images/destroy.rb
brightbox-cli-3.0.0 lib/brightbox-cli/commands/images/destroy.rb
brightbox-cli-2.12.0 lib/brightbox-cli/commands/images/destroy.rb
brightbox-cli-2.11.2 lib/brightbox-cli/commands/images/destroy.rb
brightbox-cli-2.11.1 lib/brightbox-cli/commands/images/destroy.rb
brightbox-cli-2.11.0 lib/brightbox-cli/commands/images/destroy.rb
brightbox-cli-2.10.0 lib/brightbox-cli/commands/images/destroy.rb
brightbox-cli-2.9.3 lib/brightbox-cli/commands/images/destroy.rb
brightbox-cli-2.9.2 lib/brightbox-cli/commands/images/destroy.rb
brightbox-cli-2.9.1 lib/brightbox-cli/commands/images/destroy.rb
brightbox-cli-2.9.0 lib/brightbox-cli/commands/images/destroy.rb
brightbox-cli-2.8.2 lib/brightbox-cli/commands/images/destroy.rb
brightbox-cli-2.8.1 lib/brightbox-cli/commands/images/destroy.rb
brightbox-cli-2.8.0 lib/brightbox-cli/commands/images/destroy.rb
brightbox-cli-2.7.1 lib/brightbox-cli/commands/images/destroy.rb
brightbox-cli-2.7.0 lib/brightbox-cli/commands/images/destroy.rb
brightbox-cli-2.6.0 lib/brightbox-cli/commands/images/destroy.rb