modman 1.9.7 (new formula)

Added formula for modman, a module deployment tool.
https://github.com/colinmollenhour/modman

Closes Homebrew/homebrew#29195.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
master
Bobby Burden 2014-05-12 10:35:46 -04:00 committed by Jack Nagel
parent 68f258ebf5
commit 1a2fd4dd5b
1 changed files with 16 additions and 0 deletions

16
Formula/modman.rb Normal file
View File

@ -0,0 +1,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