-
Notifications
You must be signed in to change notification settings - Fork 0
/
speakeasy@1.102.1.rb
52 lines (44 loc) · 1.52 KB
/
speakeasy@1.102.1.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 SpeakeasyAT11021 < Formula
desc "The Speakeasy CLI for interacting with the Speakeasy Platform"
homepage "https://www.speakeasyapi.dev"
version "1.102.1"
license "Apache-2.0"
on_macos do
if Hardware::CPU.intel?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v1.102.1/speakeasy_darwin_amd64.zip"
sha256 "dd66b0e4c90a3ccea6559ae8653ab1df3a7902f5d913950f6f21fd0c022d7b71"
def install
bin.install "speakeasy"
end
end
if Hardware::CPU.arm?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v1.102.1/speakeasy_darwin_arm64.zip"
sha256 "b4a6bf491c92ea937565f528d2f01f61a6819687eb26f164def254e2499f4d0d"
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/v1.102.1/speakeasy_linux_arm64.zip"
sha256 "8069551f95c517379b176508054b10f9159942d8175f8a68232e812e3710b6a8"
def install
bin.install "speakeasy"
end
end
if Hardware::CPU.intel?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v1.102.1/speakeasy_linux_amd64.zip"
sha256 "c26059b888baa3a191ff76714857fee58de7a51c3b588fa8be2c10bdbfbd9d4d"
def install
bin.install "speakeasy"
end
end
end
test do
system "#{bin}/speakeasy --version"
end
end