homebrew-core/Formula/docker-completion.rb
Michihito Shigemura 3f65e145ee
docker-completion 18.09.3
Closes #37463.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2019-03-01 12:21:24 +08:00

23 lines
769 B
Ruby

class DockerCompletion < Formula
desc "Bash, Zsh and Fish completion for Docker"
homepage "https://www.docker.com/"
url "https://github.com/docker/docker-ce.git",
:tag => "v18.09.3",
:revision => "774a1f4eee66e29a71ca12e88ac2220670990f7e"
bottle :unneeded
conflicts_with "docker",
:because => "docker already includes these completion scripts"
def install
bash_completion.install "components/cli/contrib/completion/bash/docker"
fish_completion.install "components/cli/contrib/completion/fish/docker.fish"
zsh_completion.install "components/cli/contrib/completion/zsh/_docker"
end
test do
assert_match "-F _docker",
shell_output("bash -c 'source #{bash_completion}/docker && complete -p docker'")
end
end