mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
29 lines
775 B
Ruby
29 lines
775 B
Ruby
cask "gitify" do
|
|
version "4.5.1"
|
|
sha256 "a5272194e4d32894867783d53e9954be7c1fc177dbe31d140add0ffb427a6b6a"
|
|
|
|
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
|