-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstackgen-beta.rb
More file actions
46 lines (41 loc) · 1.61 KB
/
Copy pathstackgen-beta.rb
File metadata and controls
46 lines (41 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class StackgenBeta < Formula
desc "Generative Infrastructure from Code"
homepage "https://stackgen.com/"
version "0.81.0-rc.1"
license "Apache License 2.0"
on_macos do
if Hardware::CPU.intel?
url "https://releases.stackgen.com/binaries/stackgen-cli/rc/v0.81.0-rc.1/stackgen-beta_0.81.0-rc.1_darwin_amd64.tar.gz"
sha256 "d7a1149c0c6acb53c98ca27cc3e19c7e08d4a65d27d09bada35ef7a5b1553f4b"
define_method(:install) do
bin.install "stackgen-beta"
end
end
if Hardware::CPU.arm?
url "https://releases.stackgen.com/binaries/stackgen-cli/rc/v0.81.0-rc.1/stackgen-beta_0.81.0-rc.1_darwin_arm64.tar.gz"
sha256 "50c5b48d33aadeb6e3e94dec0649c80fc5aa3cdeb0d33274e0e4da1a5a07ac38"
define_method(:install) do
bin.install "stackgen-beta"
end
end
end
on_linux do
if Hardware::CPU.intel? && Hardware::CPU.is_64_bit?
url "https://releases.stackgen.com/binaries/stackgen-cli/rc/v0.81.0-rc.1/stackgen-beta_0.81.0-rc.1_linux_amd64.tar.gz"
sha256 "ebebac213ef2c57b690f5f7eb26704565bc6a39c6fb9ef224895f7e4924d61e3"
define_method(:install) do
bin.install "stackgen-beta"
end
end
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://releases.stackgen.com/binaries/stackgen-cli/rc/v0.81.0-rc.1/stackgen-beta_0.81.0-rc.1_linux_arm64.tar.gz"
sha256 "82b9482d29877c9c8fa4eef709de8c06fbcb49175e3b3b5d170a67bb5a472caf"
define_method(:install) do
bin.install "stackgen-beta"
end
end
end
end