-
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.1.1"
license "Apache-2.0"
depends_on "gh"
on_macos do
on_intel do
url "https://github.com/Skyscanner/turbolift/releases/download/4.1.1/turbolift_4.1.1_Darwin_x86_64.tar.gz"
sha256 "068e6a9320409692e62ac7d81ec671db67512a65e907f894de12f49267f203af"
def install
bin.install "turbolift"
end
end
on_arm do
url "https://github.com/Skyscanner/turbolift/releases/download/4.1.1/turbolift_4.1.1_Darwin_arm64.tar.gz"
sha256 "f6fc6e68e0fa8d86d7f2c63b58e7422c19fb609fd82bef3c84bea1ddaf38f79e"
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.1.1/turbolift_4.1.1_Linux_x86_64.tar.gz"
sha256 "054dba56f52ebbca7f9d7e9798fd6ea2e9d01cbd4c37feaaa339f64d5a55e3dd"
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.1.1/turbolift_4.1.1_Linux_arm64.tar.gz"
sha256 "bfdd06259cad265ac40bfc64a8a175ab7ba398d224210b0de39326237f0955cb"
def install
bin.install "turbolift"
end
end
end
end
end