blob: 53361271f7006bb039db6f34a08d4f220f0f39c1 (
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
  |