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