-
Notifications
You must be signed in to change notification settings - Fork 0
/
speakeasy@0.20.3.rb
52 lines (44 loc) · 1.56 KB
/
speakeasy@0.20.3.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
52
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class SpeakeasyAT0203 < Formula
desc "The Speakeasy CLI for interacting with the Speakeasy Platform"
homepage "https://www.speakeasyapi.dev"
version "0.20.3"
license "Apache-2.0"
on_macos do
if Hardware::CPU.arm?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v0.20.3/speakeasy_0.20.3_Darwin_arm64.tar.gz"
sha256 "e81217a244d52ed582b837baf7b20524b49b59707807b745fb30c7f4ac8be081"
def install
bin.install "speakeasy"
end
end
if Hardware::CPU.intel?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v0.20.3/speakeasy_0.20.3_Darwin_x86_64.tar.gz"
sha256 "00031b1cf31d3872c6f1bb94248addddf8f0efb38623e24ac7791c811719510e"
def install
bin.install "speakeasy"
end
end
end
on_linux do
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v0.20.3/speakeasy_0.20.3_Linux_arm64.tar.gz"
sha256 "b74107af02433fd6b54865d231f4ab8c6b679476b6f32cf8e4967d670600c258"
def install
bin.install "speakeasy"
end
end
if Hardware::CPU.intel?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v0.20.3/speakeasy_0.20.3_Linux_x86_64.tar.gz"
sha256 "6a7b9829c83631be941fe6636725ec0f9cbcf4c1fd398a59013e96ef84a512e7"
def install
bin.install "speakeasy"
end
end
end
test do
system "#{bin}/speakeasy --version"
end
end