homebrew-core/Formula/docker-machine-completion.rb
Igor Kapkov 0914542d9c
docker-machine-completion 0.16.1
Closes #35860.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2019-01-10 14:04:00 +08:00

22 lines
786 B
Ruby

class DockerMachineCompletion < Formula
desc "Docker-machine completion script"
homepage "https://docs.docker.com/machine/completion/"
url "https://github.com/docker/machine/archive/v0.16.1.tar.gz"
sha256 "b3989ed5b2829c87885b40b209fe475d90d63fbb9bd10879f866441d23cbf495"
head "https://github.com/docker/machine.git"
bottle :unneeded
conflicts_with "docker-machine",
:because => "docker-machine already includes completion scripts"
def install
bash_completion.install Dir["contrib/completion/bash/*.bash"]
zsh_completion.install "contrib/completion/zsh/_docker-machine"
end
test do
assert_match "-F _docker_machine",
shell_output("bash -O extglob -c 'source #{bash_completion}/docker-machine.bash && complete -p docker-machine'")
end
end