-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitignore
67 lines (57 loc) · 1.26 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
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
# IDE's and text editors #
# Ruby mine
/.idea
# VS Code
/.vscode
# Symbol tags (e.g. generated by Atom Editor)
/tags
# Logs, temp and OS specific files
/log/*
!/log/.keep
/tmp
/public/assets/
*~
.DS_Store
.svn
.*.swp
___*
pkg/
chromedriver.log
passenger.*.lock
passenger.*.pid
/.byebug_history
browserstack.err
# Config files
# Bundler
/.bundle
# direnv config file https://github.com/direnv/direnv
# (note, this is different to the dotenv-rails gem)
.envrc
# Test files #
# Allows RSpec to persist some state between runs in order to support
# the `--only-failures` and `--next-failure` CLI options
/spec/examples.txt
# simplecov https://github.com/colszowka/simplecov
coverage
# CI Reporter JUnit compatible xml files which hold the results of the last
# rspec run
/spec/reports
# Ignore Gemfile.lock as this is a Ruby gem
Gemfile.lock
# Ignore rvm gemset file
.ruby-gemset
# When the gem is built it goes here, but we don't want to include this in
# the source code repo
/pkg/
*.gem
# Capybara related artifacts
capybara-*.html
output.html
# Ignore folders related to documentation output
/.yardoc
/_yardoc/
/html/
/doc/
# Ignore your project specific .config.yml config files
*.config.yml