Class: Central::Cli::VersionCommand

Inherits:
Clamp::Command
  • Object
show all
Includes:
Common
Defined in:
lib/central/cli/version_command.rb

Instance Method Summary collapse

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



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/central/cli/version_command.rb', line 6

def execute
  url = begin
          api_url
        rescue
          nil
        end
  puts "cli: #{Central::Cli::VERSION}"
  if url
    resp = begin
             JSON.parse(client.http_client.get(path: '/').body)
           rescue
             nil
           end
    puts "master: #{resp['version']} (#{url})" if resp
  end
end