homebrew-core/Formula/selenium-server-standalone.rb
Xiaoxing Hu ecd5476ac4 selenium-server-standalone 2.51.0
Update to version 2.51

Closes Homebrew/homebrew#49046.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2016-02-10 23:44:49 +00:00

45 lines
1.4 KiB
Ruby

class SeleniumServerStandalone < Formula
desc "Browser automation for testing purposes"
homepage "http://seleniumhq.org/"
url "https://selenium-release.storage.googleapis.com/2.51/selenium-server-standalone-2.51.0.jar"
sha256 "919752369eae7ae8fd391eb5d50c88830cf21c0ea2e01cd50e7beb7fceb48991"
bottle :unneeded
def install
libexec.install "selenium-server-standalone-#{version}.jar"
bin.write_jar_script libexec/"selenium-server-standalone-#{version}.jar", "selenium-server"
end
plist_options :manual => "selenium-server -p 4444"
def plist; <<-EOS.undent
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>#{plist_name}</string>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<false/>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/java</string>
<string>-jar</string>
<string>#{libexec}/selenium-server-standalone-#{version}.jar</string>
<string>-port</string>
<string>4444</string>
</array>
<key>ServiceDescription</key>
<string>Selenium Server</string>
<key>StandardErrorPath</key>
<string>#{var}/log/selenium-error.log</string>
<key>StandardOutPath</key>
<string>#{var}/log/selenium-output.log</string>
</dict>
</plist>
EOS
end
end