-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbomber.rb
41 lines (35 loc) · 1.11 KB
/
bomber.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
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Bomber < Formula
desc ""
homepage "https://github.com/devops-kung-fu/bomber"
version "0.5.1"
on_macos do
url "https://github.com/devops-kung-fu/bomber/releases/download/v0.5.1/bomber_0.5.1_darwin_all.tar.gz"
sha256 "13f144c087f8f0875e7f721ba2994d05fdf8022806e6307e1cbcfe5592afca84"
def install
bin.install "bomber"
end
end
on_linux do
on_intel do
if Hardware::CPU.is_64_bit?
url "https://github.com/devops-kung-fu/bomber/releases/download/v0.5.1/bomber_0.5.1_linux_amd64.tar.gz"
sha256 "72e3a5adc556523f309d18e8a450df15d48ef9d2817318f55611bc2dfd423196"
def install
bin.install "bomber"
end
end
end
on_arm do
if Hardware::CPU.is_64_bit?
url "https://github.com/devops-kung-fu/bomber/releases/download/v0.5.1/bomber_0.5.1_linux_arm64.tar.gz"
sha256 "f70acb3ee5a22d930c784c962ef126d75c016808acdae7df34156268fb4ca79d"
def install
bin.install "bomber"
end
end
end
end
end