mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
26 lines
697 B
Ruby
26 lines
697 B
Ruby
cask "warp" do
|
|
version "0.2023.11.28.08.02.stable_00"
|
|
sha256 "db5272344d344e5772cc539f7d79c8d333d18bf81c304f1267a05b75fce34bd0"
|
|
|
|
url "https://app.warp.dev/download/brew?version=v#{version}"
|
|
name "Warp"
|
|
desc "Rust-based terminal"
|
|
homepage "https://www.warp.dev/"
|
|
|
|
livecheck do
|
|
url "https://storage.googleapis.com/warp-releases/channel_versions.json"
|
|
regex(/v(\d+(?:\.\d+)+\.stable_\d+)/i)
|
|
end
|
|
|
|
auto_updates true
|
|
|
|
app "Warp.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/dev.warp.Warp-Stable",
|
|
"~/Library/Logs/warp.log",
|
|
"~/Library/Preferences/dev.warp.Warp-Stable.plist",
|
|
"~/Library/Saved Application State/dev.warp.Warp-Stable.savedState",
|
|
]
|
|
end
|