|
| 1 | +class CfTerraforming < Formula |
| 2 | + desc "CLI to facilitate terraforming your existing Cloudflare resources" |
| 3 | + homepage "https://github.com/cloudflare/cf-terraforming" |
| 4 | + url "https://github.com/cloudflare/cf-terraforming/archive/refs/tags/v0.23.3.tar.gz" |
| 5 | + sha256 "a60037470a637b7bb81e5b345a182d8907aafdbf8ab7836d8817b5e2e6496228" |
| 6 | + license "MPL-2.0" |
| 7 | + head "https://github.com/cloudflare/cf-terraforming.git", branch: "master" |
| 8 | + |
| 9 | + bottle do |
| 10 | + sha256 cellar: :any_skip_relocation, arm64_sequoia: "8b864912ec138ee9ef2ae649ef429a9fa0130ecba6fa19916bf6354e1154c847" |
| 11 | + sha256 cellar: :any_skip_relocation, arm64_sonoma: "8b864912ec138ee9ef2ae649ef429a9fa0130ecba6fa19916bf6354e1154c847" |
| 12 | + sha256 cellar: :any_skip_relocation, arm64_ventura: "8b864912ec138ee9ef2ae649ef429a9fa0130ecba6fa19916bf6354e1154c847" |
| 13 | + sha256 cellar: :any_skip_relocation, sonoma: "98e33f9481a4d829903e8ca9599a386d156783e78b23d6a7389ca6f4a08e536f" |
| 14 | + sha256 cellar: :any_skip_relocation, ventura: "98e33f9481a4d829903e8ca9599a386d156783e78b23d6a7389ca6f4a08e536f" |
| 15 | + sha256 cellar: :any_skip_relocation, x86_64_linux: "d8d0585cbbfd30b0f028b16611fccb5d3fcc741fe88a37c6618dd2fa8db9fb7e" |
| 16 | + end |
| 17 | + |
| 18 | + depends_on "go" => :build |
| 19 | + |
| 20 | + def install |
| 21 | + proj = "github.com/cloudflare/cf-terraforming" |
| 22 | + ldflags = "-s -w -X #{proj}/internal/app/cf-terraforming/cmd.versionString=#{version}" |
| 23 | + system "go", "build", *std_go_args(ldflags:), "./cmd/cf-terraforming" |
| 24 | + |
| 25 | + generate_completions_from_executable(bin/"cf-terraforming", "completion") |
| 26 | + end |
| 27 | + |
| 28 | + test do |
| 29 | + assert_match version.to_s, shell_output("#{bin}/cf-terraforming version") |
| 30 | + output = shell_output("#{bin}/cf-terraforming generate 2>&1", 1) |
| 31 | + assert_match "you must define a resource type to generate", output |
| 32 | + end |
| 33 | +end |
0 commit comments