You've already forked homebrew-cask
mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-04-22 15:25:17 -07:00
31 lines
931 B
Ruby
31 lines
931 B
Ruby
cask "devcleaner" do
|
|
version "2.5.0-458"
|
|
sha256 "4bd24da76c489d744ceee2f5440f9e39bf6468c9f4b2f22f03add3bd43ba2d57"
|
|
|
|
url "https://github.com/vashpan/xcode-dev-cleaner/releases/download/#{version.sub(/-\d+/, "")}/DevCleaner-#{version}.zip"
|
|
name "DevCleaner"
|
|
desc "Reclaim tens of gigabytes of your storage used for various Xcode caches"
|
|
homepage "https://github.com/vashpan/xcode-dev-cleaner"
|
|
|
|
livecheck do
|
|
url :url
|
|
regex(/^DevCleaner[._-]v?(\d+(?:[.-]\d+)+)\.zip$/i)
|
|
strategy :github_latest do |json, regex|
|
|
json["assets"]&.map do |asset|
|
|
match = asset["name"]&.match(regex)
|
|
next if match.blank?
|
|
|
|
match[1]
|
|
end
|
|
end
|
|
end
|
|
|
|
app "DevCleaner.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Scripts/com.oneminutegames.XcodeCleaner",
|
|
"~/Library/Application Support/CrashReporter/DevCleaner*.plist",
|
|
"~/Library/Containers/com.oneminutegames.XcodeCleaner",
|
|
]
|
|
end
|