29 lines
805 B
Ruby
29 lines
805 B
Ruby
cask "reveal" do
|
|
version "46"
|
|
sha256 "a7f6679438d6afd74db75a1cb1aeaef428905ce573bfa746ce856b8fa0f1a67a"
|
|
|
|
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
|