homebrew-core/Formula/digdag.rb
2016-07-05 19:54:02 +01:00

25 lines
644 B
Ruby

class Digdag < Formula
desc "Workload Automation System"
homepage "https://github.com/treasure-data/digdag"
url "https://dl.digdag.io/digdag-0.8.3.jar"
sha256 "6087981356fe165d8f7b3a95976dc3ac0f6f29ee64b43c678125593f01441a61"
bottle :unneeded
depends_on :java => "1.8+"
def install
libexec.install "digdag-#{version}.jar" => "digdag.jar"
# Create a wrapper script to support OS X 10.9.
(bin/"digdag").write <<-EOS.undent
#!/bin/bash
exec /bin/bash "#{libexec}/digdag.jar" "$@"
EOS
end
test do
ENV.java_cache
assert_match version.to_s, shell_output("#{bin}/digdag --version")
end
end