-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkudet.rb
47 lines (40 loc) · 1.47 KB
/
kudet.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
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Kudet < Formula
desc "Kudet - (Ku)rtosis (De)veloper (T)ools"
homepage "https://www.kurtosistech.com"
version "0.1.10"
on_macos do
if Hardware::CPU.arm?
url "https://github.com/kurtosis-tech/kudet-release-artifacts/releases/download/v0.1.10/kudet_0.1.10_darwin_arm64.tar.gz"
sha256 "ad2f7ab53f21250aff226d2f0f2cd21af81afa6e1b523e9e5703a5b7b66d253b"
def install
bin.install "kudet"
end
end
if Hardware::CPU.intel?
url "https://github.com/kurtosis-tech/kudet-release-artifacts/releases/download/v0.1.10/kudet_0.1.10_darwin_amd64.tar.gz"
sha256 "40a5aadfbad7f7fa5b66890a2932212f7a33acd97e9b7f3b249459d3de5e0902"
def install
bin.install "kudet"
end
end
end
on_linux do
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/kurtosis-tech/kudet-release-artifacts/releases/download/v0.1.10/kudet_0.1.10_linux_arm64.tar.gz"
sha256 "1e90c780aa734f1a0d3337eba3db215574919cb173e2336a141144f45bb61cc3"
def install
bin.install "kudet"
end
end
if Hardware::CPU.intel?
url "https://github.com/kurtosis-tech/kudet-release-artifacts/releases/download/v0.1.10/kudet_0.1.10_linux_amd64.tar.gz"
sha256 "80a93225847067adeecb3b7f1d3781e6cae4bcf35813319d8ef6877c44b8e3f7"
def install
bin.install "kudet"
end
end
end
end