-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgit-chglog.rb
59 lines (50 loc) · 1.85 KB
/
git-chglog.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
55
56
57
58
59
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class GitChglog < Formula
desc "CHANGELOG generator implemented in Go (Golang)."
homepage "https://godoc.org/github.com/git-chglog/git-chglog"
version "0.15.4"
on_macos do
if Hardware::CPU.arm?
url "https://github.com/git-chglog/git-chglog/releases/download/v0.15.4/git-chglog_0.15.4_darwin_arm64.tar.gz"
sha256 "50909bd4ccfe7c66411170e089d856464642b21ad67c7941eced9f81e30b2e4a"
def install
bin.install "git-chglog"
end
end
if Hardware::CPU.intel?
url "https://github.com/git-chglog/git-chglog/releases/download/v0.15.4/git-chglog_0.15.4_darwin_amd64.tar.gz"
sha256 "5cd320f82138413b2a21e63346532588f5d4f2ca1ca5c523ef43883de8115e73"
def install
bin.install "git-chglog"
end
end
end
on_linux do
if Hardware::CPU.arm? && !Hardware::CPU.is_64_bit?
url "https://github.com/git-chglog/git-chglog/releases/download/v0.15.4/git-chglog_0.15.4_linux_armv6.tar.gz"
sha256 "79efbebc1327e91334decb3be51094f3e430928fcc25512b5b963864f1da0b9d"
def install
bin.install "git-chglog"
end
end
if Hardware::CPU.intel?
url "https://github.com/git-chglog/git-chglog/releases/download/v0.15.4/git-chglog_0.15.4_linux_amd64.tar.gz"
sha256 "03cbeedbd1317289295e75016fa0acd26baeb2fc7810ed287361dd9bd8bc33a8"
def install
bin.install "git-chglog"
end
end
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/git-chglog/git-chglog/releases/download/v0.15.4/git-chglog_0.15.4_linux_arm64.tar.gz"
sha256 "75d6fcfe1e2f7335a37048e01db53b87035a11ab78a8c3fc2ba65a6e5794f71f"
def install
bin.install "git-chglog"
end
end
end
test do
system "#{bin}/git-chglog --help"
end
end