homebrew-cask/Casks/t/tower.rb

30 lines
1.1 KiB
Ruby

cask "tower" do
version "10.1,363,98e3cc69"
sha256 "5765b22bc7527798116d4b8559f7b14b8dbf21a19adda144da1af020b66df931"
url "https://www.git-tower.com/apps/tower3-mac/#{version.csv.second}-#{version.csv.third}/Tower-#{version.csv.first}-#{version.csv.second}.zip"
name "Tower"
desc "Git client focusing on power and productivity"
homepage "https://www.git-tower.com/"
livecheck do
url "https://www.git-tower.com/updates/tower3-mac/stable/releases/latest/download"
regex(%r{(\d+(?:\.\d+)*)-([a-z0-9]+)/Tower-(\d+(?:\.\d+)+)-(\d+(?:\.\d+)*)\.zip}i)
strategy :header_match do |headers, regex|
headers["location"].scan(regex).map { |match| "#{match[2]},#{match[0]},#{match[1]}" }
end
end
auto_updates true
app "Tower.app"
binary "#{appdir}/Tower.app/Contents/MacOS/gittower"
zap trash: [
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.fournova.tower*.sfl2",
"~/Library/Application Support/com.fournova.Tower*",
"~/Library/Caches/com.fournova.Tower*",
"~/Library/Preferences/com.fournova.Tower*.plist",
]
end