aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/git-gerrit.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/git-gerrit.rb b/Library/Formula/git-gerrit.rb
new file mode 100644
index 000000000..4c8da8758
--- /dev/null
+++ b/Library/Formula/git-gerrit.rb
@@ -0,0 +1,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