-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
61 lines (44 loc) · 912 Bytes
/
.gitignore
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
60
61
# Bundler dependency folder
/vendor/bundle
# Ignore all .log, .tmp, and .pid files in the log and tmp directories
/log/*.log
/tmp/*.tmp
/tmp/*.pid
# Ignore all gem files and generated documentation
*.gem
doc/
# Ignore any coverage reports
/coverage/
# Ignore Mac OS X system files
.DS_Store
# Ignore Byebug command history file.
.byebug_history
# Ignore RuboCop static code analysis config file
.rubocop.yml
# Ignore the built gem files
/pkg
# Ignore the Gemfile.lock file
Gemfile.lock
# Ignore spec examples status
/spec/examples.txt
# Ignore bundler config
/.bundle
# Ignore dotenv environment files
.env
.env.*.local
# Ignore editor and IDE specific files
.idea/
/.vscode/
/*.swp
# Ignore Yard documentation
.yardoc
# Ignore Rake compilation
.rake_tasks~
# Ignore Node.js modules
/node_modules
# Ignore any local temporary files
*.local
*.bak
*.old
# Ignore gemspec file backup
*.gemspec.bak