mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
34 lines
1.0 KiB
Ruby
34 lines
1.0 KiB
Ruby
cask "readyapi" do
|
|
arch arm: "arm64", intel: "x64"
|
|
|
|
version "3.49.0"
|
|
sha256 arm: "22786b8febc84a97a99d9327c2216aa209ccecb93ff7855f7b1e6f7c97385a22",
|
|
intel: "a074050aa96d465207bc49fba09ee0db080d38cc6b906a1c0fa67622779d474b"
|
|
|
|
url "https://dl.eviware.com/ready-api/#{version}/ReadyAPI-#{arch}-#{version}.dmg",
|
|
verified: "dl.eviware.com/ready-api/"
|
|
name "ReadyAPI Desktop"
|
|
desc "Automated API testing platform"
|
|
homepage "https://smartbear.com/product/ready-api/overview/"
|
|
|
|
livecheck do
|
|
url "https://support.smartbear.com/readyapi/docs/general-info/whats-new.html"
|
|
regex(/(\d+(?:\.\d+)+)\s\(latest\sversion\)/i)
|
|
end
|
|
|
|
installer script: {
|
|
executable: "ReadyAPI #{version} Installer.app/Contents/MacOS/JavaApplicationStub",
|
|
args: ["-q"],
|
|
}
|
|
|
|
uninstall delete: [
|
|
"/Applications/ReadyAPI-#{version}.app",
|
|
"~/Desktop/ReadyAPI #{version}",
|
|
]
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/ReadyAPI-#{version}",
|
|
"~/Library/Preferences/com.smartbear.ready.plist",
|
|
]
|
|
end
|