Class: Central::Cli::ExternalRegistries::ListCommand

Inherits:
Clamp::Command
  • Object
show all
Includes:
Common, StackOptions
Defined in:
lib/central/cli/external_registries/list_command.rb

Instance Method Summary collapse

Methods included from StackOptions

included

Methods included from Common

#access_token=, #add_master, #api_url, #api_url=, #clear_current_stack, #client, #current_master, #current_master=, #current_master_index, #current_stack, #current_stack=, #ensure_custom_ssl_ca, #require_api_url, #require_current_stack, #require_token, #reset_client, #save_settings, #settings, #settings_filename

Instance Method Details

#executeObject



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/central/cli/external_registries/list_command.rb', line 9

def execute
  require_api_url
  require_current_stack
  token = require_token
  result = client(token).get("stacks/#{current_stack}/external_registries")
  header = %w(Name Username Email)
  rows = []
  result['external_registries'].each do |r|
    rows << [r['name'], r['username'], r['email']]
  end

  ttable = TTY::Table.new header: header, rows: Array.new(rows)
  renderer = TTY::Table::Renderer::Unicode.new(ttable)
  renderer.border.style = :cyan
  renderer.padding = [0, 1, 0, 1]
  puts renderer.render
end