Files: 5aaf67116527c38bed680c3cd66d48b9367ffc1f / .gitignore
1768 bytesRaw
1 | #---------------------------------------------------------------------------- |
2 | # Ignore these files when commiting to a git repository. |
3 | # |
4 | # See http://help.github.com/ignore-files/ for more about ignoring files. |
5 | # |
6 | # The original version of this file is found here: |
7 | # https://github.com/RailsApps/rails-composer/blob/master/files/gitignore.txt |
8 | # |
9 | # Corrections? Improvements? Create a GitHub issue: |
10 | # http://github.com/RailsApps/rails-composer/issues |
11 | #---------------------------------------------------------------------------- |
12 | |
13 | # bundler state |
14 | /.bundle |
15 | /vendor/bundle/ |
16 | /vendor/ruby/ |
17 | |
18 | # minimal Rails specific artifacts |
19 | db/*.sqlite3 |
20 | /db/*.sqlite3-journal |
21 | /log/* |
22 | /tmp/* |
23 | |
24 | # various artifacts |
25 | **.war |
26 | *.rbc |
27 | *.sassc |
28 | .redcar/ |
29 | .sass-cache |
30 | /config/config.yml |
31 | /config/database.yml |
32 | /coverage.data |
33 | /coverage/ |
34 | /db/*.javadb/ |
35 | /db/*.sqlite3 |
36 | /doc/api/ |
37 | /doc/app/ |
38 | /doc/features.html |
39 | /doc/specs.html |
40 | /public/cache |
41 | /public/stylesheets/compiled |
42 | /public/system/* |
43 | /spec/tmp/* |
44 | /cache |
45 | /capybara* |
46 | /capybara-*.html |
47 | /gems |
48 | /specifications |
49 | rerun.txt |
50 | pickle-email-*.html |
51 | .zeus.sock |
52 | |
53 | # If you find yourself ignoring temporary files generated by your text editor |
54 | # or operating system, you probably want to add a global ignore instead: |
55 | # git config --global core.excludesfile ~/.gitignore_global |
56 | # |
57 | # Here are some files you may want to ignore globally: |
58 | |
59 | # scm revert files |
60 | **.orig |
61 | |
62 | # Mac finder artifacts |
63 | .DS_Store |
64 | |
65 | # Netbeans project directory |
66 | /nbproject/ |
67 | |
68 | # RubyMine project files |
69 | .idea |
70 | |
71 | # Textmate project files |
72 | /*.tmproj |
73 | |
74 | # vim artifacts |
75 | **.swp |
76 | |
77 | # Environment files that may contain sensitive data |
78 | .env |
79 | .powenv |
80 | |
81 | # Ignore application configuration |
82 | /config/application.yml |
83 | /public/packs |
84 | /public/packs-test |
85 | /node_modules |
86 | /public/packs |
87 | /public/packs-test |
88 | /node_modules |
89 | yarn-debug.log* |
90 | .yarn-integrity |
91 |
Built with git-ssb-web