-
-
Notifications
You must be signed in to change notification settings - Fork 10.9k
/
Copy pathframer.rb
32 lines (26 loc) · 1.04 KB
/
framer.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
cask "framer" do
arch arm: "arm64", intel: "x64"
version "2025.7.1"
sha256 arm: "e3230f87c0853cde0849f6d9e1abffc01dad81fc5eb90f43cb55a550099ae542",
intel: "5106a8cbb268284e832652c0e306e0c76788c56ce20506d2fb5ec9185e7488a9"
url "https://updates.framer.com/electron/darwin/#{arch}/Framer-#{version}.zip"
name "Framer"
desc "Tool that helps teams design every part of the product experience"
homepage "https://www.framer.com/"
livecheck do
url "https://updates.framer.com/electron/darwin/#{arch}/version-stable"
regex(/^v?(\d+(?:\.\d+)+)$/i)
end
auto_updates true
depends_on macos: ">= :catalina"
app "Framer.app"
zap trash: [
"~/Library/Application Support/Framer",
"~/Library/Caches/com.framer.electron",
"~/Library/Caches/com.framer.electron.ShipIt",
"~/Library/HTTPStorages/com.framer.electron",
"~/Library/Preferences/ByHost/com.framer.electron.ShipIt.*.plist",
"~/Library/Preferences/com.framer.electron.plist",
"~/Library/Saved Application State/com.framer.electron.savedState",
]
end