aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBobby Burden2014-05-12 10:35:46 -0400
committerJack Nagel2014-05-18 23:14:45 -0500
commit660aa8d5cbeae37fbcbdbcef45387f086f476cdd (patch)
tree61f8448e5e7d2a507beff05a711cc4f7582304a8
parent79a2be570e59505c296f2e35fbdd9a8b455865a4 (diff)
downloadhomebrew-660aa8d5cbeae37fbcbdbcef45387f086f476cdd.tar.bz2
modman 1.9.7 (new formula)
Added formula for modman, a module deployment tool. https://github.com/colinmollenhour/modman Closes #29195. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
-rw-r--r--Library/Formula/modman.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/modman.rb b/Library/Formula/modman.rb
new file mode 100644
index 000000000..773e3170e
--- /dev/null
+++ b/Library/Formula/modman.rb
@@ -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