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.0/galen-bin-2.3.0.zip" sha256 "2a3333c3313eaed6566125d688d3ef9de4c9352903c871ff5ff3e02807dce783" 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