homebrew-cask/Casks/tower.rb

32 lines
1.1 KiB
Ruby

cask "tower" do
version "9.2,351,cf3fcb8e"
sha256 "c741de80c450912154bdcc1cf4385881b871153b2ec336d9117aa3dd4048d638"
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"
strategy :header_match do |headers|
match = headers["location"].match(%r{(\d+(?:\.\d+)*)-([a-z0-9]+)/Tower-(\d+(?:\.\d+)+)-(\d+(?:\.\d+)*)\.zip}i)
next if match.blank?
"#{match[3]},#{match[1]},#{match[2]}"
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