-
Notifications
You must be signed in to change notification settings - Fork 0
/
keel.rb
47 lines (40 loc) · 1.37 KB
/
keel.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 Keel < Formula
desc ""
homepage "https://github.com/teamkeel/cli"
version "0.378.0"
on_macos do
if Hardware::CPU.arm?
url "https://github.com/teamkeel/cli/releases/download/v0.378.0/cli_0.378.0_Darwin_arm64.tar.gz"
sha256 "b14118e7a012322ebeb1e5845ee05ef30cfc1b66642a16e742f3ec741d4aff96"
def install
bin.install "cli" => "keel"
end
end
if Hardware::CPU.intel?
url "https://github.com/teamkeel/cli/releases/download/v0.378.0/cli_0.378.0_Darwin_x86_64.tar.gz"
sha256 "0276bf8385d80ebb70d167d677e5acd1895b2fb2b3c3d50b240380761336227d"
def install
bin.install "cli" => "keel"
end
end
end
on_linux do
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/teamkeel/cli/releases/download/v0.378.0/cli_0.378.0_Linux_arm64.tar.gz"
sha256 "fab7c939aad693f7c7482269623f1b742cfd9dac6a40cb9ed2c2483bfb02c587"
def install
bin.install "cli" => "keel"
end
end
if Hardware::CPU.intel?
url "https://github.com/teamkeel/cli/releases/download/v0.378.0/cli_0.378.0_Linux_x86_64.tar.gz"
sha256 "13f027616dabe99d672a339902bfac57fcc768c317c26598d723d5be3f4e9818"
def install
bin.install "cli" => "keel"
end
end
end
end