homebrew-cask/Casks/p/postman.rb

41 lines
1.4 KiB
Ruby

cask "postman" do
arch arm: "osx_arm64", intel: "osx64"
version "10.18.7"
sha256 arm: "0db984184009a25fd2f848e600fce80c3356304eb5928d1e7787f03dca12c135",
intel: "f21853977b755dc8e0dfdcd218b3780808812673da92f669458e784a5cb752ee"
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