Sha256: 7becdac718f334be7d262457e9c2e43a30f98f16535e294d512ad8e4c8b0cfa0
Contents?: true
Size: 776 Bytes
Versions: 39
Compression:
Stored size: 776 Bytes
Contents
module Kontena::Cli::Stacks require_relative 'registry/push_command' require_relative 'registry/pull_command' require_relative 'registry/search_command' require_relative 'registry/show_command' require_relative 'registry/remove_command' class RegistryCommand < Kontena::Command subcommand "push", "Push a stack into the stacks registry", Registry::PushCommand subcommand "pull", "Pull a stack from the stacks registry", Registry::PullCommand subcommand "search", "Search for stacks in the stacks registry", Registry::SearchCommand subcommand "show", "Show info about a stack in the stacks registry", Registry::ShowCommand subcommand ["remove", "rm"], "Remove a stack (or version) from the stacks registry", Registry::RemoveCommand end end
Version data entries
39 entries across 39 versions & 1 rubygems