23 lines
748 B
Ruby
23 lines
748 B
Ruby
class GruntCompletion < Formula
|
|
desc "Bash and Zsh completion for Grunt"
|
|
homepage "https://gruntjs.com/"
|
|
url "https://github.com/gruntjs/grunt-cli/archive/v1.4.3.tar.gz"
|
|
sha256 "3bf07d807d61adbf04fa93589a7dd58fbc4da7a5f1febfd8a99b3ccb0d682009"
|
|
license "MIT"
|
|
head "https://github.com/gruntjs/grunt-cli.git", branch: "main"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "3d2fd1dd2be3cbc084c78eb81679d279e05b83db13604eebc7670467a04b1da1"
|
|
end
|
|
|
|
def install
|
|
bash_completion.install "completion/bash" => "grunt"
|
|
zsh_completion.install "completion/zsh" => "_grunt"
|
|
end
|
|
|
|
test do
|
|
assert_match "-F _grunt_completions",
|
|
shell_output("bash -c 'source #{bash_completion}/grunt && complete -p grunt'")
|
|
end
|
|
end
|