7a4dabfc1a
This restores 1.8 hash rockets because they look nicer with e.g. `depends_on :foo => :bar`
45 lines
1.4 KiB
Ruby
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.53/selenium-server-standalone-2.53.1.jar"
|
|
sha256 "1cce6d3a5ca5b2e32be18ca5107d4f21bddaa9a18700e3b117768f13040b7cf8"
|
|
|
|
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
|