-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstackgen-beta.rb
More file actions
46 lines (41 loc) · 1.61 KB
/
stackgen-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.77.0-rc.4"
license "Apache License 2.0"
on_macos do
if Hardware::CPU.intel?
url "https://releases.stackgen.com/binaries/stackgen-cli/rc/v0.77.0-rc.4/stackgen-beta_0.77.0-rc.4_darwin_amd64.tar.gz"
sha256 "86b18bb9fcbcec3f205844491faf0c51ffadfd770e9b9adaf153c6540b8724e2"
define_method(:install) do
bin.install "stackgen-beta"
end
end
if Hardware::CPU.arm?
url "https://releases.stackgen.com/binaries/stackgen-cli/rc/v0.77.0-rc.4/stackgen-beta_0.77.0-rc.4_darwin_arm64.tar.gz"
sha256 "58f67bc550f6e3403f79f674d611e460e96ae58da068beb6d7bde5b71e5dbb38"
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.77.0-rc.4/stackgen-beta_0.77.0-rc.4_linux_amd64.tar.gz"
sha256 "abab0414009346ef341472d0454d95c458070b99b280885dc62efc60569a8bfc"
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.77.0-rc.4/stackgen-beta_0.77.0-rc.4_linux_arm64.tar.gz"
sha256 "7fcb30a25a69f836553cfdbd9f96956bce4de9d7047c3627e826cd7e13b24c28"
define_method(:install) do
bin.install "stackgen-beta"
end
end
end
end