mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
29 lines
648 B
Ruby
29 lines
648 B
Ruby
cask "sizzy" do
|
|
arch arm: "arm64", intel: "intel"
|
|
|
|
version "72.2.0"
|
|
sha256 :no_check
|
|
|
|
url "https://proxy.sizzy.co/updates/download/mac?arch=#{arch}"
|
|
name "Sizzy"
|
|
desc "Tool to simulate responsive designs on multiple devices"
|
|
homepage "https://sizzy.co/"
|
|
|
|
livecheck do
|
|
url :url
|
|
regex(/Sizzy[._-]v?(\d+(?:\.\d+)+)(?:[._-]#{arch})?\.dmg/i)
|
|
strategy :header_match
|
|
end
|
|
|
|
auto_updates true
|
|
|
|
app "Sizzy.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Sizzy",
|
|
"~/Library/Logs/Sizzy",
|
|
"~/Library/Preferences/com.kitze.sizzy.plist",
|
|
"~/Library/Saved Application State/com.kitze.sizzy.savedState",
|
|
]
|
|
end
|