25 lines
628 B
Ruby
25 lines
628 B
Ruby
cask "bdash" do
|
|
version "1.16.3"
|
|
sha256 "95d3b065b174ec6dd8dcc02090600e623566e93fe68b20782a4b0dce842d2079"
|
|
|
|
url "https://github.com/bdash-app/bdash/releases/download/v#{version}/Bdash-#{version}-mac.zip"
|
|
name "Bdash"
|
|
desc "Simple SQL Client for lightweight data analysis"
|
|
homepage "https://github.com/bdash-app/bdash"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
app "Bdash.app"
|
|
|
|
zap trash: [
|
|
"~/.bdash",
|
|
"~/Library/Application Support/Bdash",
|
|
"~/Library/Logs/Bdash",
|
|
"~/Library/Preferences/io.bdash.plist",
|
|
"~/Library/Saved Application State/io.bdash.savedState",
|
|
]
|
|
end
|