homebrew-cask/Casks/p/postman.rb

41 lines
1.4 KiB
Ruby

cask "postman" do
arch arm: "osx_arm64", intel: "osx64"
version "10.21.0"
sha256 arm: "fa25c4d1bf4c7328433611c2f8c630ecf4a3d441a88f7f28d07e669e608aa3af",
intel: "645ce24b454f2ec7777bbde94bbe7e36e35fa876938584fc2c3f2f6cb9bae8f9"
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