-
Notifications
You must be signed in to change notification settings - Fork 1
/
turbolift.rb
54 lines (46 loc) · 1.55 KB
/
turbolift.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
42
43
44
45
46
47
48
49
50
51
52
53
54
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Turbolift < Formula
desc "Simple tool to help apply changes across many GitHub repositories simultaneously"
homepage "https://github.com/Skyscanner/turbolift"
version "4.0.0"
license "Apache-2.0"
depends_on "gh"
on_macos do
on_intel do
url "https://github.com/Skyscanner/turbolift/releases/download/4.0.0/turbolift_4.0.0_Darwin_x86_64.tar.gz"
sha256 "98e0ca3a3c6775716deb2858bb41f440e1996fa54fed6d99c509f44ea5505d49"
def install
bin.install "turbolift"
end
end
on_arm do
url "https://github.com/Skyscanner/turbolift/releases/download/4.0.0/turbolift_4.0.0_Darwin_arm64.tar.gz"
sha256 "99bd956da8bec42796d9dad7df73811f77579a8aa964470c4ea7bb3b4a58c62b"
def install
bin.install "turbolift"
end
end
end
on_linux do
on_intel do
if Hardware::CPU.is_64_bit?
url "https://github.com/Skyscanner/turbolift/releases/download/4.0.0/turbolift_4.0.0_Linux_x86_64.tar.gz"
sha256 "a9928cd8e4ad44fc02664f97deef9f9439e7d20ad9bd5e362ff725472e2988fa"
def install
bin.install "turbolift"
end
end
end
on_arm do
if Hardware::CPU.is_64_bit?
url "https://github.com/Skyscanner/turbolift/releases/download/4.0.0/turbolift_4.0.0_Linux_arm64.tar.gz"
sha256 "10adb56d69d9315e396c44a222dd6da1578d5e5c1ed85d43b49fc29aa089134e"
def install
bin.install "turbolift"
end
end
end
end
end