Sha256: f000d5a458b8dbff62cd080e7828da8006959b30ee523bb7a13177330403b785
Contents?: true
Size: 1.08 KB
Versions: 11
Compression:
Stored size: 1.08 KB
Contents
require "vmc/cli/organization/base" module VMC::Organization class Org < Base desc "Show organization information" group :organizations, :hidden => true input :organization, :desc => "Organization to show", :aliases => %w{--org -o}, :argument => :optional, :from_given => by_name(:organization), :default => proc { client.current_organization } input :full, :desc => "Show full information for spaces, domains, etc.", :default => false def org org = input[:organization] unless org return if quiet? fail "No current organization." end if quiet? puts org.name return end line "#{c(org.name, :name)}:" indented do line "domains: #{name_list(org.domains)}" if input[:full] line "spaces:" spaced(org.spaces(:depth => 2)) do |s| indented do invoke :space, :space => s end end else line "spaces: #{name_list(org.spaces)}" end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems