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