homebrew-core/Formula/docker-machine-completion.rb

24 lines
788 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.10.0.tar.gz"
sha256 "ed64698723436e68341a1ebd8486006293eac306bfa8628e924b38bfcb5b039d"
revision 1
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 -c 'source #{bash_completion}/docker-machine.bash && complete -p docker-machine'")
end
end