-
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 SpeakeasyAT11220 < Formula
desc "The Speakeasy CLI for interacting with the Speakeasy Platform"
homepage "https://www.speakeasyapi.dev"
version "1.122.0"
license "Apache-2.0"
on_macos do
if Hardware::CPU.intel?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v1.122.0/speakeasy_darwin_amd64.zip"
sha256 "b87079c48d86857514502997afadfab9e3bbd2a9f3d3bb615a0af01420ce1c35"
def install
bin.install "speakeasy"
end
end
if Hardware::CPU.arm?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v1.122.0/speakeasy_darwin_arm64.zip"
sha256 "443c24de7ca706cdf871d231be764179855a604e8e10e3d3a90d32959a9df4d9"
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.122.0/speakeasy_linux_arm64.zip"
sha256 "54c9c7146c29828fe6351f198f1eda818b2be7779f607022e00a9b422dd5ed8a"
def install
bin.install "speakeasy"
end
end
if Hardware::CPU.intel?
url "https://github.com/speakeasy-api/speakeasy/releases/download/v1.122.0/speakeasy_linux_amd64.zip"
sha256 "3491585f9f4895a083512e91548c90990e387462ca5ac684e224cc972c53509f"
def install
bin.install "speakeasy"
end
end
end
test do
system "#{bin}/speakeasy --version"
end
end