Files
2023-11-22 10:34:51 -05:00

36 lines
1.0 KiB
Ruby

cask "vimr" do
version "0.45.0,20231122.130444"
sha256 "7cb0be6bf807fe7b05b015f662e59b52d0081fb211da96f105914a137835a50b"
url "https://github.com/qvacua/vimr/releases/download/v#{version.csv.first}-#{version.csv.second}/VimR-v#{version.csv.first}.tar.bz2",
verified: "github.com/qvacua/vimr/"
name "VimR"
desc "GUI for the Neovim text editor"
homepage "http://vimr.org/"
livecheck do
url :url
regex(/^v?(\d+(?:\.\d+)+)[._-](\d+(?:\.\d+)+)$/i)
strategy :github_latest do |json, regex|
match = json["tag_name"]&.match(regex)
next if match.blank?
"#{match[1]},#{match[2]}"
end
end
auto_updates true
depends_on macos: ">= :high_sierra"
app "VimR.app"
binary "#{appdir}/VimR.app/Contents/Resources/vimr"
zap trash: [
"~/Library/Caches/com.qvacua.VimR",
"~/Library/Preferences/com.qvacua.VimR.menuitems.plist",
"~/Library/Preferences/com.qvacua.VimR.plist",
"~/Library/Saved Application State/com.qvacua.VimR.savedState",
"~/Library/WebKit/com.qvacua.VimR",
]
end