homebrew-core/Formula/deployer.rb
Dominyk Tiller da7da32c11
deployer 6.3.0
Closes #31622.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2018-08-31 04:40:35 +01:00

21 lines
566 B
Ruby

class Deployer < Formula
desc "Deployment tool written in PHP with support for popular frameworks"
homepage "https://deployer.org/"
url "https://deployer.org/releases/v6.3.0/deployer.phar"
sha256 "e2860178f5f8f2add74ace08ce4947709021c20e28d44f60105784bb9388ece5"
bottle :unneeded
depends_on "php"
conflicts_with "dep", :because => "both install `dep` binaries"
def install
bin.install "deployer.phar" => "dep"
end
test do
system "#{bin}/dep", "init", "--template=Common"
assert_predicate testpath/"deploy.php", :exist?
end
end