-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconvoy.rb
More file actions
46 lines (41 loc) · 1.51 KB
/
convoy.rb
File metadata and controls
46 lines (41 loc) · 1.51 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
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Convoy < Formula
desc "A fast & secure open source webhooks service"
homepage "https://getconvoy.io/"
version "26.3.5"
license "MPL-2.0"
on_macos do
if Hardware::CPU.intel?
url "https://dl.cloudsmith.io/public/convoy/convoy/raw/versions/26.3.5/convoy_26.3.5_darwin_amd64.tar.gz"
sha256 "3c350797e316685da5e7e6cd8f407a1d80379cc081fbe64b1116f4dba92b5a89"
define_method(:install) do
bin.install "convoy"
end
end
if Hardware::CPU.arm?
url "https://dl.cloudsmith.io/public/convoy/convoy/raw/versions/26.3.5/convoy_26.3.5_darwin_arm64.tar.gz"
sha256 "9925029a64790e5a36e14ec991ef2082f9d4dd8140fb7d536e8b647d6a95bf1f"
define_method(:install) do
bin.install "convoy"
end
end
end
on_linux do
if Hardware::CPU.intel? && Hardware::CPU.is_64_bit?
url "https://dl.cloudsmith.io/public/convoy/convoy/raw/versions/26.3.5/convoy_26.3.5_linux_amd64.tar.gz"
sha256 "6dad29f6e9c186bd2edef4d6290511b9f553b78d06dfaeed16f9f86ef55c57fc"
define_method(:install) do
bin.install "convoy"
end
end
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://dl.cloudsmith.io/public/convoy/convoy/raw/versions/26.3.5/convoy_26.3.5_linux_arm64.tar.gz"
sha256 "eff06df5b4b236a9db2b168543e7afe0d86d771db9e621b44e2235b74973f75b"
define_method(:install) do
bin.install "convoy"
end
end
end
end