From 2fec2af80167715150bdbf65511495cbb12d10f4 Mon Sep 17 00:00:00 2001 From: Alpha Chen Date: Wed, 10 Apr 2013 10:11:14 -0700 Subject: [PATCH] Add git-hooks formula --- git-hooks.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 git-hooks.rb diff --git a/git-hooks.rb b/git-hooks.rb new file mode 100644 index 0000000..b441121 --- /dev/null +++ b/git-hooks.rb @@ -0,0 +1,10 @@ +require 'formula' + +class GitHooks < Formula + head 'git://github.com/icefox/git-hooks.git' + homepage 'https://github.com/icefox/git-hooks' + + def install + bin.install 'git-hooks' + end +end