mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
25 lines
529 B
Ruby
25 lines
529 B
Ruby
cask "ok-json" do
|
|
version "2.6.2"
|
|
sha256 :no_check
|
|
|
|
url "https://okjson.app/download/okjson-latest.zip"
|
|
name "OK JSON"
|
|
desc "Scriptable JSON formatter and editor"
|
|
homepage "https://okjson.app/"
|
|
|
|
livecheck do
|
|
url "https://okjson.app/download/appcast.xml"
|
|
strategy :sparkle, &:short_version
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :big_sur"
|
|
|
|
app "OK JSON.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Containers/net.shinystone.OKJSON",
|
|
"~/Library/Group Containers/group.net.shinystone.OKJSON",
|
|
]
|
|
end
|