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