Sha256: 28229938bf33f1bdf554aede5f0b2b903117d96387c83c1a92eecaf43e750b97

Contents?: true

Size: 639 Bytes

Versions: 14

Compression:

Stored size: 639 Bytes

Contents

module Brightbox
  desc 'Show detailed account info'
  arg_name 'account-id...'
  command [:show] do |c|

    c.action do |global_options,options,args|

      if args.empty?
        raise "You must specify the accounts to show"
      end

      accounts = Account.find_or_call(args) do |id|
        warn "Couldn't find account #{id}"
      end

      table_opts = global_options.merge({
        :vertical => true,
        :fields => [:id, :name, :cloud_ip_limit, :ram_limit, :ram_used, :lb_limit,
                    :ram_free, :library_ftp_host, :library_ftp_user ]
      })

      render_table(accounts, table_opts)

    end
  end
end


Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
brightbox-cli-0.18.1 lib/brightbox-cli/commands/accounts-show.rb
brightbox-cli-0.18.0 lib/brightbox-cli/commands/accounts-show.rb
brightbox-cli-0.17.5 lib/brightbox-cli/commands/accounts-show.rb
brightbox-cli-0.17.4 lib/brightbox-cli/commands/accounts-show.rb
brightbox-cli-0.17.3 lib/brightbox-cli/commands/accounts-show.rb
brightbox-cli-0.17.2 lib/brightbox-cli/commands/accounts-show.rb
brightbox-cli-0.17.1 lib/brightbox-cli/commands/accounts-show.rb
brightbox-cli-0.17.0 lib/brightbox-cli/commands/accounts-show.rb
brightbox-cli-0.16.0 lib/brightbox-cli/commands/accounts-show.rb
brightbox-cli-0.15.0 lib/brightbox-cli/commands/accounts-show.rb
brightbox-cli-0.14.1 lib/brightbox-cli/commands/accounts-show.rb
brightbox-cli-0.14.0 lib/brightbox-cli/commands/accounts-show.rb
brightbox-cli-0.13.1 lib/brightbox-cli/commands/accounts-show.rb
brightbox-cli-0.13.0 lib/brightbox-cli/commands/accounts-show.rb