-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitpert.rb
More file actions
21 lines (19 loc) · 832 Bytes
/
gitpert.rb
File metadata and controls
21 lines (19 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# This file was generated by GoReleaser. DO NOT EDIT.
class Gitpert < Formula
desc "measure the pertinence of git authors as a time-decayed measure of LOC added and removed to a repository (or a set of files in a repository)"
homepage "https://github.com/augmentable-dev/gitpert/"
version "0.0.7"
bottle :unneeded
if OS.mac?
url "https://github.com/augmentable-dev/gitpert/releases/download/v0.0.7/gitpert_0.0.7_Darwin_x86_64.tar.gz"
sha256 "ebad482d322514a36b76dd4c081e5514fbf2389de88ce4a11336432698995771"
elsif OS.linux?
if Hardware::CPU.intel?
url "https://github.com/augmentable-dev/gitpert/releases/download/v0.0.7/gitpert_0.0.7_Linux_x86_64.tar.gz"
sha256 "cd097fb59f4437e649f49b7995c4d40b056665cc80612306b604ec05ec87aacb"
end
end
def install
bin.install "gitpert"
end
end