Skip to content
This repository was archived by the owner on Mar 19, 2020. It is now read-only.

Commit 78f425e

Browse files
author
Yuma Soga
committed
Merge branch 'master' into future/update-desgin-to-own--front
2 parents 31efe42 + 29f5015 commit 78f425e

File tree

2 files changed

+44
-15
lines changed

2 files changed

+44
-15
lines changed

.gitignore

Lines changed: 44 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,48 @@
1-
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2-
#
3-
# If you find yourself ignoring temporary files generated by your text editor
4-
# or operating system, you probably want to add a global ignore instead:
5-
# git config --global core.excludesfile '~/.gitignore_global'
1+
*.rbc
2+
capybara-*.html
3+
.rspec
4+
/log
5+
/tmp
6+
/db/*.sqlite3
7+
/db/*.sqlite3-journal
8+
/public/system
9+
/coverage/
10+
/spec/tmp
11+
*.orig
12+
rerun.txt
13+
pickle-email-*.html
14+
15+
# TODO Comment out this rule if you are OK with secrets being uploaded to the repo
16+
config/initializers/secret_token.rb
17+
config/master.key
618

7-
# Ignore bundler config.
19+
# Only include if you have production secrets in this file, which is no longer a Rails default
20+
# config/secrets.yml
21+
22+
# dotenv
23+
# TODO Comment out this rule if environment variables can be committed
24+
.env
25+
26+
## Environment normalization:
827
/.bundle
28+
/vendor/bundle
929

10-
# Ignore the default SQLite database.
11-
/db/*.sqlite3
12-
/db/*.sqlite3-journal
30+
# these should all be checked in to normalize the environment:
31+
# Gemfile.lock, .ruby-version, .ruby-gemset
1332

14-
# Ignore all logfiles and tempfiles.
15-
/log/*
16-
!/log/.keep
17-
/tmp
18-
/coverage
19-
/config/master.key
33+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
34+
.rvmrc
35+
36+
# if using bower-rails ignore default bower_components path bower.json files
37+
/vendor/assets/bower_components
38+
*.bowerrc
39+
bower.json
40+
41+
# Ignore pow environment settings
42+
.powenv
43+
44+
# Ignore Byebug command history file.
45+
.byebug_history
46+
47+
# Ignore node_modules
48+
node_modules/

log/.keep

Whitespace-only changes.

0 commit comments

Comments
 (0)