blob: 773e3170e1a267368fb9d9ba0d8a6e9d0edadc33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require "formula"
class Modman < Formula
homepage "https://github.com/colinmollenhour/modman"
url "https://github.com/colinmollenhour/modman/archive/1.9.7.tar.gz"
sha1 "28985c511c509ea32c0633e8fd29997091c4e5f3"
def install
bin.install "modman"
bash_completion.install "bash_completion" => "modman.bash"
end
test do
system "#{bin}/modman"
end
end
|