Skip to content

Commit 0f14aed

Browse files
committed
🙈 modernize .gitignore
1 parent 3284f39 commit 0f14aed

File tree

1 file changed

+43
-15
lines changed

1 file changed

+43
-15
lines changed

‎.gitignore

Lines changed: 43 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,44 @@
1+
# Build Artifacts
2+
/pkg/
3+
/tmp/
14
*.gem
2-
*.rbc
3-
.bundle
4-
.config
5-
.yardoc
6-
InstalledFiles
7-
_yardoc
8-
coverage
9-
doc/
10-
lib/bundler/man
11-
pkg
12-
rdoc
13-
spec/reports
14-
test/tmp
15-
test/version_tmp
16-
tmp
5+
6+
# Bundler
7+
/.bundle/
8+
/gemfiles/*.lock
9+
/gemfiles/.bundle/
10+
/gemfiles/.bundle/config
11+
/gemfiles/vendor/
12+
Appraisal.*.gemfile.lock
13+
14+
# Specs
15+
.rspec_status
16+
/coverage/
17+
/spec/reports/
18+
19+
# Documentation
20+
/.yardoc/
21+
/_yardoc/
22+
/rdoc/
23+
/doc/
24+
25+
# Ruby Version Managers (RVM, rbenv, etc)
26+
# Ignored because we currently use .tool-versions
27+
.rvmrc
28+
.ruby-version
29+
.ruby-gemset
30+
31+
# Benchmarking
32+
/measurement/
33+
34+
# Debugger detritus
35+
.byebug_history
36+
37+
# direnv - brew install direnv
38+
.env.local
39+
40+
# OS Detritus
41+
.DS_Store
42+
43+
# Editors
44+
*~

0 commit comments

Comments
 (0)