Sha256: deb9f3e43c92b1fc13ec475be4dafe6af08b1d89269a8dfe9453c1ce72ac77ff

Contents?: true

Size: 1.13 KB

Versions: 40

Compression:

Stored size: 1.13 KB

Contents

module Brightbox
  desc "Lists the type of templates available for servers"
  command [:types] do |cmd|

    cmd.default_command :list

    cmd.desc "List types"
    cmd.arg_name "[type-id...]"
    cmd.command [:list] do |c|

      c.action do |global_options, _options, args|

        if args.empty?
          types = Type.find :all
        else
          types = Type.find_or_call(args) do |id|
            warn "Couldn't find type #{id}"
          end
        end

        render_table(types.sort, global_options)
      end
    end

    cmd.desc "Show detailed type info"
    cmd.arg_name "type-id..."
    cmd.command [:show] do |c|

      c.action do |global_options, _options, args|

        if args.empty?
          raise "You must specify the types you want to show"
        end

        types = Type.find_or_call(args) do |id|
          warn "Couldn't find type #{id}"
        end

        display_options = {
          :vertical => true,
          :fields => [:id, :handle, :status, :name, :ram, :disk, :cores]
        }

        table_opts = global_options.merge(display_options)
        render_table(types, table_opts)

      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/types.rb
brightbox-cli-3.2.0 lib/brightbox-cli/commands/types.rb
brightbox-cli-3.1.0 lib/brightbox-cli/commands/types.rb
brightbox-cli-3.0.1 lib/brightbox-cli/commands/types.rb
brightbox-cli-3.0.0 lib/brightbox-cli/commands/types.rb
brightbox-cli-2.12.0 lib/brightbox-cli/commands/types.rb
brightbox-cli-2.11.2 lib/brightbox-cli/commands/types.rb
brightbox-cli-2.11.1 lib/brightbox-cli/commands/types.rb
brightbox-cli-2.11.0 lib/brightbox-cli/commands/types.rb
brightbox-cli-2.10.0 lib/brightbox-cli/commands/types.rb
brightbox-cli-2.9.3 lib/brightbox-cli/commands/types.rb
brightbox-cli-2.9.2 lib/brightbox-cli/commands/types.rb
brightbox-cli-2.9.1 lib/brightbox-cli/commands/types.rb
brightbox-cli-2.9.0 lib/brightbox-cli/commands/types.rb
brightbox-cli-2.8.2 lib/brightbox-cli/commands/types.rb
brightbox-cli-2.8.1 lib/brightbox-cli/commands/types.rb
brightbox-cli-2.8.0 lib/brightbox-cli/commands/types.rb
brightbox-cli-2.7.1 lib/brightbox-cli/commands/types.rb
brightbox-cli-2.7.0 lib/brightbox-cli/commands/types.rb
brightbox-cli-2.6.0 lib/brightbox-cli/commands/types.rb