-
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 SpeakeasyAT0184 < Formula
desc "The Speakeasy CLI for interacting with the Speakeasy Platform"
homepage "https://www.speakeasyapi.dev"
version "0.18.4"
license "Apache-2.0"
on_macos do
if Hardware::CPU.intel?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v0.18.4/speakeasy_0.18.4_Darwin_x86_64.tar.gz"
sha256 "d57f2f938958269bb4f8b60f9b8c52510e62454bdf21d936455ad90897575cee"
def install
bin.install "speakeasy"
end
end
if Hardware::CPU.arm?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v0.18.4/speakeasy_0.18.4_Darwin_arm64.tar.gz"
sha256 "97cef8ccd57a7558692225b692c1db3682b31e0837d28d57e92c7323608ba978"
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.18.4/speakeasy_0.18.4_Linux_x86_64.tar.gz"
sha256 "9807bd8b93d1a6a42be4f345e675b51dc78238ee0c4a58cf6680989e7fbf51e6"
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.18.4/speakeasy_0.18.4_Linux_arm64.tar.gz"
sha256 "f4b4b05e4caac2ec1367b519211ca84c2c3c6f3e8bda97ca741fa809eab953db"
def install
bin.install "speakeasy"
end
end
end
test do
system "#{bin}/speakeasy --version"
end
end