Skip to content

Commit c55d173

Browse files
committed
Initial commit
0 parents  commit c55d173

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
lines changed

.gitignore

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
2+
# Created by https://www.gitignore.io/api/osx,macos
3+
4+
### macOS ###
5+
*.DS_Store
6+
.AppleDouble
7+
.LSOverride
8+
9+
# Icon must end with two \r
10+
Icon
11+
12+
# Thumbnails
13+
._*
14+
15+
# Files that might appear in the root of a volume
16+
.DocumentRevisions-V100
17+
.fseventsd
18+
.Spotlight-V100
19+
.TemporaryItems
20+
.Trashes
21+
.VolumeIcon.icns
22+
.com.apple.timemachine.donotpresent
23+
24+
# Directories potentially created on remote AFP share
25+
.AppleDB
26+
.AppleDesktop
27+
Network Trash Folder
28+
Temporary Items
29+
.apdisk
30+
31+
### OSX ###
32+
33+
# Icon must end with two \r
34+
35+
# Thumbnails
36+
37+
# Files that might appear in the root of a volume
38+
39+
# Directories potentially created on remote AFP share
40+
41+
42+
# End of https://www.gitignore.io/api/osx,macos

git-chglog.rb

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
require "formula"
2+
3+
class GitChglog < Formula
4+
homepage "https://github.com/git-chglog/git-chglog"
5+
url "https://github.com/git-chglog/git-chglog/releases/download/0.0.1/git-chglog_darwin_amd64"
6+
sha256 "6b53df62ff4e590961f75520c8a58d4e62c3220971bdd622952e4cdc9a918a20"
7+
head "https://github.com/git-chglog/git-chglog.git"
8+
version "0.0.1"
9+
10+
def install
11+
system "mv", "git-chglog_darwin_amd64", "git-chglog"
12+
bin.install "git-chglog"
13+
end
14+
end

0 commit comments

Comments
 (0)