homebrew-cf/shield.rb

21 lines
469 B
Ruby

require "fileutils"
class Shield < Formula
homepage "https://github.com/starkandwayne/shield"
v = "v8.8.5" # CI Managed
url "https://github.com/starkandwayne/shield/releases/download/#{v}/shield-darwin-amd64"
version v
sha256 "9ed8543bd1b5fd19f4196e6fef8e6149c7676d5780b696a34991dd421cdac8bb" # CI Managed
def install
FileUtils.mv("shield-darwin-amd64", "shield")
bin.install "shield"
end
test do
system "#{bin}/shield", "-h"
end
end