Skip to content

Commit 015262b

Browse files
committed
Update .gitignore file.
1 parent a754f61 commit 015262b

File tree

1 file changed

+65
-7
lines changed

1 file changed

+65
-7
lines changed

.gitignore

+65-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,74 @@
1-
/.bundle/
2-
/.yardoc
3-
/_yardoc/
1+
### Ruby ###
2+
*.gem
3+
*.rbc
4+
/.config
45
/coverage/
5-
/doc/
6+
/InstalledFiles
67
/pkg/
78
/spec/reports/
9+
/spec/examples.txt
10+
/test/tmp/
11+
/test/version_tmp/
812
/tmp/
13+
/.bundle/
14+
/.yardoc
15+
/_yardoc/
16+
/doc/
17+
18+
19+
# Used by dotenv library to load environment variables.
20+
.env
21+
22+
# Ignore Byebug command history file.
23+
.byebug_history
24+
25+
## Specific to RubyMotion:
26+
.dat*
27+
.repl_history
28+
build/
29+
*.bridgesupport
30+
build-iPhoneOS/
31+
build-iPhoneSimulator/
32+
33+
## Specific to RubyMotion (use of CocoaPods):
34+
#
35+
# We recommend against adding the Pods directory to your .gitignore. However
36+
# you should judge for yourself, the pros and cons are mentioned at:
37+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
38+
# vendor/Pods/
39+
40+
## Documentation cache and generated files:
41+
/.yardoc/
42+
/_yardoc/
43+
/doc/
44+
/rdoc/
45+
46+
## Environment normalization:
47+
/.bundle/
48+
/vendor/bundle
49+
/lib/bundler/man/
50+
51+
# for a library or gem, you might want to ignore these files since the code is
52+
# intended to run in multiple environments; otherwise, check them in:
53+
# Gemfile.lock
54+
# .ruby-version
55+
# .ruby-gemset
56+
57+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
58+
.rvmrc
59+
60+
# Used by RuboCop. Remote config files pulled in from inherit_from directive.
61+
# .rubocop-https?--*
962

1063
# rspec failure tracking
1164
.rspec_status
1265

13-
.byebug_history
14-
.env
66+
# IDE
67+
.idea
68+
.idea/
69+
.idea/*
70+
.vscode
71+
.vs/
1572

16-
*.gem
73+
# Mac
74+
.DS_Store

0 commit comments

Comments
 (0)