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