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