homebrew-core/Formula/modman.rb
Bobby Burden e686e7ad63 modman 1.11
Closes Homebrew/homebrew#37701.

Signed-off-by: Tim D. Smith <git@tim-smith.us>
2015-03-13 21:49:02 -07:00

16 lines
374 B
Ruby

require "formula"
class Modman < Formula
homepage "https://github.com/colinmollenhour/modman"
url "https://github.com/colinmollenhour/modman/archive/1.11.tar.gz"
sha1 "7b9d2f271eed83135c228e4f9de19f0134acfa1c"
def install
bin.install "modman"
bash_completion.install "bash_completion" => "modman.bash"
end
test do
system "#{bin}/modman"
end
end