mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
The migration of `orka.rb` and then `o*.rb` has worked well without complaint so: let's move everything else, too.
28 lines
876 B
Ruby
28 lines
876 B
Ruby
cask "rapidapi" do
|
|
version "4.2.0"
|
|
sha256 "5174283faf3960144abf3674703e520f868de64070df820a81c6e116ed08f119"
|
|
|
|
url "https://cdn-builds.paw.cloud/paw/RapidAPI-#{version}.zip"
|
|
name "RapidAPI"
|
|
desc "HTTP client that helps testing and describing APIs"
|
|
homepage "https://paw.cloud/"
|
|
|
|
livecheck do
|
|
url "https://paw.cloud/api/v2/updates/appcast"
|
|
strategy :sparkle, &:short_version
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :catalina"
|
|
|
|
app "RapidAPI.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Scripts/com.luckymarmot.Paw",
|
|
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.luckymarmot.paw.sfl*",
|
|
"~/Library/Containers/com.luckymarmot.Paw",
|
|
"~/Library/Preferences/com.luckymarmot.Paw.plist",
|
|
"~/Library/Saved Application State/com.luckymarmot.Paw.savedState",
|
|
]
|
|
end
|