Sha256: e179058a22a74192378fd0d3abed74e50b13661815714b10000973e00e0fa663

Contents?: true

Size: 1.13 KB

Versions: 4

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

4 entries across 4 versions & 1 rubygems

Version Path
brightbox-cli-1.1.0 lib/brightbox-cli/commands/types.rb
brightbox-cli-1.0.0 lib/brightbox-cli/commands/types.rb
brightbox-cli-1.0.0.rc2 lib/brightbox-cli/commands/types.rb
brightbox-cli-1.0.0.rc1 lib/brightbox-cli/commands/types.rb