Files
homebrew-cask/Casks/r/reveal.rb
2023-11-16 17:48:37 -05:00

29 lines
805 B
Ruby

cask "reveal" do
version "44"
sha256 "a0433600528646501e0b2da50677057ec0ecd6ca08b089070398aaa94ca4d1f5"
url "https://download.revealapp.com/Reveal.app-#{version}.zip"
name "Reveal"
desc "Powerful runtime view debugging for iOS developers"
homepage "https://revealapp.com/"
livecheck do
url "https://revealapp.com/updates/index.xml"
strategy :sparkle, &:short_version
end
auto_updates true
depends_on macos: ">= :ventura"
app "Reveal.app"
zap trash: [
"/Users/Shared/Reveal",
"~/Library/Application Support/Reveal",
"~/Library/Caches/com.ittybittyapps.Reveal2",
"~/Library/Logs/com.ittybittyapps.Reveal2",
"~/Library/Preferences/com.ittybittyapps.Reveal2.plist",
"~/Library/Saved Application State/com.ittybittyapps.Reveal2.savedState",
]
end