-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.gitignore
67 lines (55 loc) · 1.2 KB
/
.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
62
63
64
65
66
67
/.bundle/
/.yardoc
/_yardoc/
##
# NOTE: Ignores `coverage` content, but NOT the folder.
#
/coverage/*
!/coverage/.gitkeep
/doc/
/pkg/
/spec/reports/
/tmp/
# rspec failure tracking
/.rspec_status
# Hide `byebug` history
/.byebug_history
# Ignore `Gemfile.lock`
/Gemfile.lock
##
# NOTE: Ignores `Gemfile` amd `Gemfile.lock` used in docker containers.
#
# NOTE: `Gemfile*` matches all files that start with Gemfile in any nesting.
# NOTE: `/Gemfile*` matches all files that start with Gemfile only from root folder.
#
/Gemfile*
##
# NOTE: Ignores `gemfiles` content, but NOT the folder.
# NOTE: `gemfiles` folder is generated by Appraisal.
#
/gemfiles/*
!/gemfiles/.gitkeep
##
# NOTE: Ignores `.DS_Store` in any nesting.
#
.DS_Store
##
# NOTE: Ignores `docs` content, but NOT the folder.
#
/docs/*
!/docs/.gitkeep
##
# NOTE: Ignores `docs/api` content, but NOT the folder.
#
/docs/api/*
!/docs/api/.gitkeep
##
# NOTE: Ignores `flowchart.html`, that can be generated by `Service.mermaid_flowchart.save`.
# Check `HasMermaidFlowchart` for details.
#
flowchart.html
##
# NOTE: Ignores `TODO.md` and `TODO`. Usually, this file and folder are used for notes that are NOT ready to be shared with the outside world.
#
TODO.md
TODO