22 lines
786 B
Ruby
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.12.2.tar.gz"
|
|
sha256 "d8b89fcaa8226bd0ed294630b12740def88c70b1924ca4cc1ea05a19b25c05a3"
|
|
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
|