-
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 SpeakeasyAT11210 < Formula
desc "The Speakeasy CLI for interacting with the Speakeasy Platform"
homepage "https://www.speakeasyapi.dev"
version "1.121.0"
license "Apache-2.0"
on_macos do
if Hardware::CPU.intel?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v1.121.0/speakeasy_darwin_amd64.zip"
sha256 "510bfe61fa41854e2c6f8de3a2cf8d188d522f7e0c57fb06ffc8642fcddf4555"
def install
bin.install "speakeasy"
end
end
if Hardware::CPU.arm?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v1.121.0/speakeasy_darwin_arm64.zip"
sha256 "8b7e5bbee49a86d4893525333f4b930f571cb79c54e76858ed255fb75e079ae4"
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.121.0/speakeasy_linux_amd64.zip"
sha256 "c427dd2bcba501f4a099de0c5c6a6c1c2677cba6a17bf83eaac9b1b40ed3020a"
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.121.0/speakeasy_linux_arm64.zip"
sha256 "a63c5d90869e47924b38f6d3b92b960978a6479f5292f5e83bdcfc7309f14aca"
def install
bin.install "speakeasy"
end
end
end
test do
system "#{bin}/speakeasy --version"
end
end