2014-05-12 14:35:46 +00:00
|
|
|
class Modman < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Module deployment script geared towards Magento development"
|
2014-05-12 14:35:46 +00:00
|
|
|
homepage "https://github.com/colinmollenhour/modman"
|
2015-05-09 10:54:08 +00:00
|
|
|
url "https://github.com/colinmollenhour/modman/archive/1.12.tar.gz"
|
2015-08-03 12:55:31 +00:00
|
|
|
sha256 "437547bb54f62101215038a678506e87b1e9d5a8f04eed68e0c823198dd0b6ec"
|
2014-05-12 14:35:46 +00:00
|
|
|
|
2015-10-23 12:07:24 +00:00
|
|
|
bottle :unneeded
|
|
|
|
|
2014-05-12 14:35:46 +00:00
|
|
|
def install
|
|
|
|
bin.install "modman"
|
|
|
|
bash_completion.install "bash_completion" => "modman.bash"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/modman"
|
|
|
|
end
|
|
|
|
end
|