You've already forked homebrew-cask
mirror of
https://github.com/encounter/homebrew-cask.git
synced 2026-03-30 11:16:45 -07:00
36563bdf7c
* gitblade: add livecheck * Update gitblade.rb Co-authored-by: Miccal Matthews <miccal.matthews@gmail.com>
18 lines
448 B
Ruby
18 lines
448 B
Ruby
cask "gitblade" do
|
|
version "1.0.8"
|
|
sha256 "51b261ee679048c2799a66439d8599d1ec5fa1592713993e85fa641eefeab274"
|
|
|
|
url "https://gitblade.com/dl/gitblade-#{version}-darwin-x64.dmg"
|
|
name "GitBlade"
|
|
desc "Graphical client for Git"
|
|
homepage "https://gitblade.com/"
|
|
|
|
livecheck do
|
|
url "https://gitblade.com/#download"
|
|
strategy :page_match
|
|
regex(%r{href=.*?/gitblade-(\d+(?:\.\d+)*)-darwin-x64\.dmg}i)
|
|
end
|
|
|
|
app "GitBlade.app"
|
|
end
|