-
-
Notifications
You must be signed in to change notification settings - Fork 10.7k
/
gitfox.rb
43 lines (37 loc) · 1.61 KB
/
gitfox.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
33
34
35
36
37
38
39
40
41
42
43
cask "gitfox" do
version "3.9.5,9633"
sha256 "7f9517b77fc095c831439b206c1326acd0e1569ed2bde8bb8fb8866ed6d5703a"
url "https://storage.googleapis.com/gitfox/builds/retail/#{version.csv.second}/Gitfox.#{version.csv.second}.zip",
verified: "storage.googleapis.com/gitfox/"
name "Gitfox"
desc "Git client"
homepage "https://www.gitfox.app/"
livecheck do
url "https://api.gitfox.app/v1/versions"
strategy :json do |json|
json.dig("response", "builds")&.map do |item|
next if !item["short_version_string"] || !item["build"]
"#{item["short_version_string"]},#{item["build"]}"
end
end
end
auto_updates true
depends_on macos: ">= :ventura"
app "Gitfox.app"
binary "#{appdir}/Gitfox.app/Contents/SharedSupport/bin/gitfox-cli", target: "gitfox"
zap trash: [
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.bytieful.gitfox-retail.sfl*",
"~/Library/Application Support/com.bytieful.Gitfox",
"~/Library/Application Support/com.bytieful.Gitfox-retail",
"~/Library/Application Support/Gitfox",
"~/Library/Caches/com.bytieful.Gitfox",
"~/Library/Caches/com.bytieful.Gitfox-retail",
"~/Library/Caches/com.crashlytics.data/com.bytieful.Gitfox",
"~/Library/HTTPStorages/com.bytieful.Gitfox-retail",
"~/Library/Preferences/com.bytieful.Gitfox-retail.plist",
"~/Library/Preferences/com.bytieful.Gitfox.*",
"~/Library/Saved Application State/com.bytieful.Gitfox-retail.savedState",
"~/Library/WebKit/com.bytieful.Gitfox",
"~/Library/WebKit/com.bytieful.Gitfox-retail",
]
end