mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
24 lines
885 B
Ruby
24 lines
885 B
Ruby
cask "copilot-for-xcode" do
|
|
version "0.28.2"
|
|
sha256 "4c74bda8b3590eaa80bbf5dec2f2ce98a2f91a031bfec560495b233b0c3daa9f"
|
|
|
|
url "https://github.com/intitni/CopilotForXcode/releases/download/#{version}/Copilot.for.Xcode.app.zip"
|
|
name "Copilot for Xcode"
|
|
desc "Xcode extension for Github Copilot"
|
|
homepage "https://github.com/intitni/CopilotForXcode"
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :monterey"
|
|
|
|
app "Copilot for Xcode.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Scripts/*com.intii.CopilotForXcode*",
|
|
"~/Library/Application Support/com.intii.CopilotForXcode",
|
|
"~/Library/Containers/com.intii.CopilotForXcode.EditorExtension",
|
|
"~/Library/Group Containers/*group.com.intii.CopilotForXcode*",
|
|
"~/Library/LaunchAgents/com.intii.CopilotForXcode.XPCService.plist",
|
|
"~/Library/Preferences/5YKZ4Y3DAW.group.com.intii.CopilotForXcode.plist",
|
|
]
|
|
end
|