-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcolony.rb
51 lines (44 loc) · 1.38 KB
/
colony.rb
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
47
48
49
50
51
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Colony < Formula
desc ""
homepage "https://github.com/konstructio/colony"
version "0.1.0"
on_macos do
on_intel do
url "https://github.com/konstructio/colony/releases/download/v0.1.0/colony_Darwin_x86_64.tar.gz"
sha256 "a45452b1312047b160f5380b57fe49c1a230de05d5caaa7c1441e42576732a80"
def install
bin.install "colony"
end
end
on_arm do
url "https://github.com/konstructio/colony/releases/download/v0.1.0/colony_Darwin_arm64.tar.gz"
sha256 "1fc585b8dbd742fa137d0c15379f85583750ebe6c7544dad73e655a92b7a946c"
def install
bin.install "colony"
end
end
end
on_linux do
on_intel do
if Hardware::CPU.is_64_bit?
url "https://github.com/konstructio/colony/releases/download/v0.1.0/colony_Linux_x86_64.tar.gz"
sha256 "121a79201b744917a5dcf24adca4a9ab7d875e5946f8c4caf1e7a1c25ccb59ee"
def install
bin.install "colony"
end
end
end
on_arm do
if Hardware::CPU.is_64_bit?
url "https://github.com/konstructio/colony/releases/download/v0.1.0/colony_Linux_arm64.tar.gz"
sha256 "7c37d932f744a35eafdc963818245d49af2084191f35fdd5c3ec882dcbd13ea6"
def install
bin.install "colony"
end
end
end
end
end