blob: 4c8da8758ec001051ff6f64e843b5144dd592fbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class GitGerrit < Formula
url 'https://github.com/fbzhong/git-gerrit/tarball/v0.2.0'
homepage 'https://github.com/fbzhong/git-gerrit'
md5 '943163c38db55173bc9be981d03fbd8e'
def install
prefix.install 'bin'
# install bash completions.
(prefix + 'etc/bash_completion.d').install 'completion/git-gerrit-completion.bash'
end
end
|