2015-01-22 15:41:30 +00:00
|
|
|
class Galen < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Automated testing of look and feel for responsive websites"
|
2015-01-22 15:41:30 +00:00
|
|
|
homepage "http://galenframework.com/"
|
2015-09-30 15:23:12 +00:00
|
|
|
url "https://github.com/galenframework/galen/releases/download/galen-2.1.2/galen-bin-2.1.2.zip"
|
|
|
|
sha256 "46c94af882845bca40168860f5ed35630a0b5416d18c37f479807da86c1c067e"
|
2015-01-22 15:41:30 +00:00
|
|
|
|
2015-04-07 21:49:50 +00:00
|
|
|
bottle do
|
2015-09-11 22:37:06 +00:00
|
|
|
cellar :any_skip_relocation
|
2015-09-30 18:09:17 +00:00
|
|
|
sha256 "165f156f19df88826e595ca67e9ce144e3b64bd655bec4d334465d946fb73f59" => :el_capitan
|
|
|
|
sha256 "3f968ded3798169d8199f5f9c635a70e063e113525d6e365c1bf3d7c7e75c56f" => :yosemite
|
|
|
|
sha256 "3d1dc754b35a7e1d5c37518b33e3a7fc91e560da90d7df872afeadbcb67c7040" => :mavericks
|
2015-04-07 21:49:50 +00:00
|
|
|
end
|
|
|
|
|
2015-01-30 09:27:42 +00:00
|
|
|
depends_on :java => "1.6+"
|
2015-01-22 15:41:30 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
libexec.install "galen.jar"
|
2015-01-25 11:11:08 +00:00
|
|
|
(bin/"galen").write <<-EOS.undent
|
|
|
|
#!/bin/sh
|
|
|
|
set -e
|
2015-08-19 13:42:50 +00:00
|
|
|
java -cp "#{libexec}/galen.jar:lib/*:libs/*" com.galenframework.GalenMain "$@"
|
2015-01-25 11:11:08 +00:00
|
|
|
EOS
|
2015-01-22 15:41:30 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
2015-01-27 13:24:25 +00:00
|
|
|
assert_match "Version: #{version}", shell_output("#{bin}/galen -v")
|
2015-01-22 15:41:30 +00:00
|
|
|
end
|
|
|
|
end
|