Browse Source

Don't ignore tmp and log directory (#2999)

https://weblog.rubyonrails.org/2019/3/13/Rails-4-2-5-1-5-1-6-2-have-been-released/
Rails `5.2.2.1` requires `tmp` directory committed to git repository for CI to run successfully.
pull/3001/head
OKURA Masafumi 5 years ago
parent
commit
1a417fe294
1 changed files with 7 additions and 3 deletions
  1. 7
    3
      Rails.gitignore

+ 7
- 3
Rails.gitignore View File

*.rbc *.rbc
capybara-*.html capybara-*.html
.rspec .rspec
/log
/tmp
/db/*.sqlite3 /db/*.sqlite3
/db/*.sqlite3-journal /db/*.sqlite3-journal
/public/system /public/system
rerun.txt rerun.txt
pickle-email-*.html pickle-email-*.html


# Ignore all logfiles and tempfiles.
/log/*
/tmp/*
!/log/.keep
!/tmp/.keep

# TODO Comment out this rule if you are OK with secrets being uploaded to the repo # TODO Comment out this rule if you are OK with secrets being uploaded to the repo
config/initializers/secret_token.rb config/initializers/secret_token.rb
config/master.key config/master.key


# Ignore uploaded files in development # Ignore uploaded files in development
/storage/* /storage/*
!/storage/.keep
!/storage/.keep

Loading…
Cancel
Save