blob: 8313d74a3ad7f7c3cb487d999a9a94f0c18a43b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Willgit <Formula
head 'git://gitorious.org/willgit/mainline.git'
homepage 'http://git-wt-commit.rubyforge.org/'
def install
Dir.chdir 'bin' do
bin.install %w[git-publish-branch git-rank-contributors git-show-merges git-wtf]
end
end
end
|