You've already forked homebrew-cask
mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-04-22 15:25:17 -07:00
29 lines
775 B
Ruby
29 lines
775 B
Ruby
cask "gitify" do
|
|
version "4.6.1"
|
|
sha256 "85df862937c3d9aee901e450781a51c1099d07ca368956d9b7002c4a7f97bdd8"
|
|
|
|
url "https://github.com/gitify-app/gitify/releases/download/v#{version}/Gitify-#{version}-universal-mac.zip"
|
|
name "Gitify"
|
|
desc "App that shows GitHub notifications on the desktop"
|
|
homepage "https://github.com/gitify-app/gitify"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
app "Gitify.app"
|
|
|
|
uninstall quit: [
|
|
"com.electron.gitify",
|
|
"com.electron.gitify.helper",
|
|
]
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/gitify",
|
|
"~/Library/Preferences/com.electron.gitify.helper.plist",
|
|
"~/Library/Preferences/com.electron.gitify.plist",
|
|
"~/Library/Saved Application State/com.electron.gitify.savedState",
|
|
]
|
|
end
|