phinze/homebrew-cask

View on GitHub
Casks/c/contexts.rb

Summary

Maintainability
A
0 mins
Test Coverage
cask "contexts" do
  on_mojave :or_older do
    version "3.7.1"
    sha256 "de5e4a660cc30276155606b539d1ae58684115a3983d69598f1505fcad499a87"

    livecheck do
      skip "Legacy version"
    end
  end
  on_catalina :or_newer do
    version "3.9.0"
    sha256 "c86a214d5ee7718453d0fb6442b3ef9a7fc02c5c1582b6d28ef0c2e621a6b6aa"

    livecheck do
      url "https://contexts.co/appcasts/stable.xml"
      strategy :sparkle do |item|
        item.version.chars.join(".")
      end
    end
  end

  url "https://contexts.co/releases/Contexts-#{version}.dmg"
  name "Contexts"
  desc "Allows switching between application windows"
  homepage "https://contexts.co/"

  auto_updates true

  app "Contexts.app"

  uninstall quit: "com.contextsformac.Contexts"

  zap trash: [
    "~/Library/Application Support/.com.contextsformac.Contexts.plist",
    "~/Library/Application Support/com.contextsformac.Contexts",
    "~/Library/Caches/com.contextsformac.Contexts",
    "~/Library/Logs/Contexts",
    "~/Library/Preferences/com.contextsformac.Contexts.plist",
  ]
end