mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
22 lines
658 B
Ruby
22 lines
658 B
Ruby
cask "expo-orbit" do
|
|
version "1.0.1"
|
|
sha256 "17268d54fc531eb56ad669033597a6a8eb290296ec81ed8de64eb2f85295de53"
|
|
|
|
url "https://github.com/expo/orbit/releases/download/expo-orbit-v#{version}/expo-orbit.v#{version}.zip"
|
|
name "Expo Orbit"
|
|
desc "Launch builds and start simulators from your menu bar"
|
|
homepage "https://github.com/expo/orbit/"
|
|
|
|
depends_on macos: ">= :catalina"
|
|
|
|
app "Expo Orbit.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/dev.expo.orbit",
|
|
"~/Library/Caches/dev.expo.orbit",
|
|
"~/Library/HTTPStorages/dev.expo.orbit",
|
|
"~/Library/Preferences/dev.expo.orbit.plist",
|
|
"~/Library/WebKit/dev.expo.orbit",
|
|
]
|
|
end
|