Files
homebrew-cask/Casks/p/postman.rb
2023-11-09 16:01:15 +08:00

41 lines
1.4 KiB
Ruby

cask "postman" do
arch arm: "osx_arm64", intel: "osx64"
version "10.20.0"
sha256 arm: "2c450b52bd4a91d7d0fa10f98dbd6c33c6e11d5abee88543bca329e0110a005b",
intel: "9c2440680e1d1e0c518b589e08103a3eb79462ec2b9fe1c30a5f51d75bd91ad6"
url "https://dl.pstmn.io/download/version/#{version}/#{arch}",
verified: "dl.pstmn.io/download/version/"
name "Postman"
desc "Collaboration platform for API development"
homepage "https://www.postman.com/"
# This is a workaround to a slow-to-update livecheck. It uses the in-app
# update check link and queries the available versions for a generic major
# version. We cannot use #{version} as the URL does not exist if #{version}
# is the latest version available.
livecheck do
url "https://dl.pstmn.io/update/status?currentVersion=#{version.major}.0.0&platform=#{arch}"
strategy :json do |json|
json["version"]
end
end
auto_updates true
app "Postman.app"
zap trash: [
"~/Library/Application Support/com.postmanlabs.mac.ShipIt",
"~/Library/Application Support/Postman",
"~/Library/Caches/com.postmanlabs.mac.ShipIt",
"~/Library/Caches/com.postmanlabs.mac",
"~/Library/Caches/Postman",
"~/Library/HTTPStorages/com.postmanlabs.mac",
"~/Library/Preferences/ByHost/com.postmanlabs.mac.ShipIt.*.plist",
"~/Library/Preferences/com.postmanlabs.mac.plist",
"~/Library/Saved Application State/com.postmanlabs.mac.savedState",
]
end