mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
28 lines
800 B
Ruby
28 lines
800 B
Ruby
cask "tableplus" do
|
|
version "5.6.6,520"
|
|
sha256 "c5b740831175b016493428855fe0d5a60f1758623f82055e925ec2b05c914289"
|
|
|
|
url "https://download.tableplus.com/macos/#{version.csv.second}/TablePlus.dmg"
|
|
name "TablePlus"
|
|
desc "Native GUI tool for relational databases"
|
|
homepage "https://tableplus.com/"
|
|
|
|
livecheck do
|
|
url "https://tableplus.com/osx/version.xml"
|
|
strategy :sparkle
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "TablePlus.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/com.tinyapp.TablePlus",
|
|
"~/Library/Caches/com.tinyapp.TablePlus",
|
|
"~/Library/Cookies/com.tinyapp.TablePlus.binarycookies",
|
|
"~/Library/Preferences/com.tinyapp.TablePlus.plist",
|
|
"~/Library/Saved Application State/com.tinyapp.TablePlus.savedState",
|
|
]
|
|
end
|