Sha256: 3cbbaad67a9fb7f95e200f403075e7e54e7ff0bedfcda8a5f783fdcf88ec1680
Contents?: true
Size: 820 Bytes
Versions: 40
Compression:
Stored size: 820 Bytes
Contents
module Brightbox command [:accounts] do |cmd| cmd.desc I18n.t("accounts.show.desc") cmd.arg_name "account-id..." cmd.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 end
Version data entries
40 entries across 40 versions & 1 rubygems