Skip to content

Commit

Permalink
Use Rails defaults from v6.0.3.2 for gitignore (#1726)
Browse files Browse the repository at this point in the history
When #1718 was merged, it introduced a potential solution to /tmp/pids/.keep
being unintentionally deleted. Unfortunately this didn't fix the issue and in fact
seems to have made it worse.

The issue may have been solved already, and it was only surfacing again
when moving between commits that included #a0eeca6 and those that didn't.

The changes I'm proposing to gitignore are as currently generated in new Rails
apps.
  • Loading branch information
pablobm authored Jul 31, 2020
1 parent 40e0652 commit 6f7c700
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,16 @@
/coverage/*
/db/*.sqlite3
/log/*
/tmp/*
!/log/.keep
!/tmp/.keep
/spec/example_app/log/*
/spec/example_app/tmp/*
!/spec/example_app/log/.keep
!/spec/example_app/tmp/.keep
/spec/example_app/public/system
/spec/example_app/public/assets
/tags
/tmp/app
/spec/example_app/tmp/*
pkg
*.ipr
*.iws
Expand Down

0 comments on commit 6f7c700

Please sign in to comment.