homebrew-cask/Casks/l/localxpose.rb

25 lines
570 B
Ruby

cask "localxpose" do
arch arm: "arm64", intel: "amd64"
version "23.11.1"
sha256 :no_check
url "https://api.localxpose.io/api/v2/downloads/loclx-darwin-#{arch}.zip"
name "LocalXpose"
desc "Reverse proxy that enables you to expose your localhost to the internet"
homepage "https://localxpose.io/"
livecheck do
url "https://api.localxpose.io/api/v2/downloads/darwin-#{arch}.json"
strategy :json do |json|
json["Version"]
end
end
auto_updates true
binary "loclx-darwin-#{arch}", target: "loclx"
zap trash: "~/.localxpose"
end