homebrew-core/Formula/cargo-completion.rb
2019-11-07 09:36:10 -05:00

22 lines
737 B
Ruby

class CargoCompletion < Formula
desc "Bash and Zsh completion for Cargo"
homepage "https://github.com/rust-lang/cargo"
url "https://github.com/rust-lang/cargo/archive/0.40.0.tar.gz"
sha256 "b0a6808a2eaa9b20ccaeedeb04f583ee34b33d289f4d0076044b9fc2b1f4c59d"
version_scheme 1
head "https://github.com/rust-lang/cargo.git"
bottle :unneeded
def install
bash_completion.install "src/etc/cargo.bashcomp.sh" => "cargo"
zsh_completion.install "src/etc/_cargo"
end
test do
# we need to define a dummy 'cargo' command to force the script to define
# the completion function
assert_match "-F _cargo",
shell_output("cargo() { true;} && source #{bash_completion}/cargo && complete -p cargo")
end
end