Files

30 lines
998 B
Ruby
Raw Permalink Normal View History

2023-06-09 11:41:30 -04:00
cask "devpod" do
arch arm: "aarch64", intel: "x64"
2023-11-08 01:12:22 -05:00
version "0.4.2"
sha256 arm: "8f5941f81f761baa7c7aa78499d70b7d13ebb37bdf978d22716699817ca23dd2",
intel: "60617ef878469e9709d73f397b44b3873e9d8054ece99fdea091a59619bd3b73"
2023-06-09 11:41:30 -04:00
2023-06-10 05:01:37 +08:00
url "https://github.com/loft-sh/devpod/releases/download/v#{version}/DevPod_macos_#{arch}.dmg",
2023-06-09 11:41:30 -04:00
verified: "github.com/loft-sh/devpod/"
name "DevPod"
desc "UI to create reproducible developer environments based on a devcontainer.json"
homepage "https://devpod.sh/"
2023-06-09 13:35:23 -04:00
auto_updates true
2023-06-10 05:01:37 +08:00
depends_on macos: ">= :high_sierra"
2023-06-09 13:35:23 -04:00
2023-06-09 11:41:30 -04:00
app "DevPod.app"
2023-09-15 20:43:53 +12:00
binary "#{appdir}/DevPod.app/Contents/MacOS/devpod-cli", target: "devpod"
2023-06-09 13:34:45 -04:00
2023-09-15 20:43:53 +12:00
zap trash: [
"~/.devpod",
"~/Library/Application Support/sh.loft.devpod",
"~/Library/Caches/sh.loft.devpod",
"~/Library/Logs/sh.loft.devpod",
"~/Library/Preferences/sh.loft.devpod.plist",
"~/Library/Saved Application State/sh.loft.devpod.savedState",
"~/Library/WebKit/sh.loft.devpod",
]
2023-06-09 11:41:30 -04:00
end