homebrew-core/Formula/wpcli-completion.rb
2017-08-08 14:16:52 -07:00

19 lines
529 B
Ruby

class WpcliCompletion < Formula
desc "Bash completion for Wpcli"
homepage "https://github.com/wp-cli/wp-cli"
url "https://github.com/wp-cli/wp-cli/archive/v1.3.0.tar.gz"
sha256 "8a85cfe1f75546ecbc05d3201caaff2ce26b57b8251f0757291072fbccf6c37d"
head "https://github.com/wp-cli/wp-cli.git"
bottle :unneeded
def install
bash_completion.install "utils/wp-completion.bash" => "wp"
end
test do
assert_match "-F _wp_complete",
shell_output("source #{bash_completion}/wp && complete -p wp")
end
end