Sha256: 4e2e5e3b35d027a7c486c0a75c7a36a90e544ec5c35afe65da2ba7390a7af0ea
Contents?: true
Size: 872 Bytes
Versions: 8
Compression:
Stored size: 872 Bytes
Contents
require_relative 'master/vagrant_command' require_relative 'master/aws_command' require_relative 'master/digital_ocean_command' require_relative 'master/azure_command' require_relative 'master/use_command' require_relative 'master/list_command' class Kontena::Cli::MasterCommand < Clamp::Command subcommand "vagrant", "Vagrant specific commands", Kontena::Cli::Master::VagrantCommand subcommand "aws", "AWS specific commands", Kontena::Cli::Master::AwsCommand subcommand "digitalocean", "DigitalOcean specific commands", Kontena::Cli::Master::DigitalOceanCommand subcommand "azure", "Azure specific commands", Kontena::Cli::Master::AzureCommand subcommand ["list", "ls"], "List masters where client has logged in", Kontena::Cli::Master::ListCommand subcommand "use", "Switch to use selected master", Kontena::Cli::Master::UseCommand def execute end end
Version data entries
8 entries across 8 versions & 1 rubygems