phinze/homebrew-cask

View on GitHub
Casks/b/blocs.rb

Summary

Maintainability
A
0 mins
Test Coverage
cask "blocs" do
  version "5.2.5"
  sha256 "e9c19a2fdd117267fa603bec7444749263c2e3a943e41df2bf6fb83df84249f2"

  url "https://blocsapp.com/download/archives/Blocs#{version}.zip"
  name "Blocs"
  desc "Visual web design software"
  homepage "https://blocsapp.com/"

  livecheck do
    url "https://blocsapp.com/update/v#{version.major}/info.xml"
    strategy :sparkle, &:short_version
  end

  auto_updates true
  depends_on macos: ">= :mojave"
  container nested: "Blocs/Blocs-#{version.major}.dmg"

  app "Blocs.app"

  zap trash: [
    "~/Library/Application Support/Blocs *",
    "~/Library/Application Support/Blocs",
    "~/Library/Caches/com.cazoobi.Blocs-*",
    "~/Library/HTTPStorages/com.cazoobi.Blocs-*",
    "~/Library/HTTPStorages/com.cazoobi.Blocs-*.binarycookies",
    "~/Library/Preferences/com.cazoobi.Blocs-*.plist",
    "~/Library/Saved Application State/com.cazoobi.Blocs-*.savedState",
  ]
end