homebrew-core/Formula/galen.rb
2017-04-01 17:59:22 -07:00

23 lines
660 B
Ruby

class Galen < Formula
desc "Automated testing of look and feel for responsive websites"
homepage "http://galenframework.com/"
url "https://github.com/galenframework/galen/releases/download/galen-2.3.3/galen-bin-2.3.3.zip"
sha256 "2226add4261c339dc52499387b0fc55d17a714371dd37b03c03c197f3ac4f5ac"
bottle :unneeded
depends_on :java => "1.6+"
def install
libexec.install "galen.jar"
(bin/"galen").write <<-EOS.undent
#!/bin/sh
set -e
java -cp "#{libexec}/galen.jar:lib/*:libs/*" com.galenframework.GalenMain "$@"
EOS
end
test do
assert_match "Version: #{version}", shell_output("#{bin}/galen -v")
end
end