19 lines
530 B
Ruby
19 lines
530 B
Ruby
class GitGerrit < Formula
|
|
desc "Gerrit code review helper scripts"
|
|
homepage "https://github.com/fbzhong/git-gerrit"
|
|
url "https://github.com/fbzhong/git-gerrit/archive/v0.3.0.tar.gz"
|
|
sha256 "433185315db3367fef82a7332c335c1c5e0b05dabf8d4fbeff9ecf6cc7e422eb"
|
|
head "https://github.com/fbzhong/git-gerrit.git"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
prefix.install "bin"
|
|
bash_completion.install "completion/git-gerrit-completion.bash"
|
|
end
|
|
|
|
test do
|
|
system "git", "init"
|
|
system "git", "gerrit", "help"
|
|
end
|
|
end
|