blob: 2064e0ecd3847e205f9a0b7666f94752b7dcf7a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class GitHg < Formula
head 'git://github.com/offbytwo/git-hg.git'
homepage 'http://offbytwo.com/git-hg/'
def install
# Install all
prefix.install Dir['*']
end
end
|