mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Remove redundant .gitignore entries
Follow-up to #37053. The `*.sqlite3-*` .gitignore entries added in that commit subsume previous `*.sqlite3-journal` entries.
This commit is contained in:
parent
db60199354
commit
f7b5019eea
5 changed files with 0 additions and 5 deletions
1
actionmailbox/.gitignore
vendored
1
actionmailbox/.gitignore
vendored
|
@ -1,5 +1,4 @@
|
|||
/test/dummy/db/*.sqlite3
|
||||
/test/dummy/db/*.sqlite3-journal
|
||||
/test/dummy/db/*.sqlite3-*
|
||||
/test/dummy/log/*.log
|
||||
/test/dummy/tmp/
|
||||
|
|
1
actiontext/.gitignore
vendored
1
actiontext/.gitignore
vendored
|
@ -1,5 +1,4 @@
|
|||
/test/dummy/db/*.sqlite3
|
||||
/test/dummy/db/*.sqlite3-journal
|
||||
/test/dummy/db/*.sqlite3-*
|
||||
/test/dummy/log/*.log
|
||||
/test/dummy/public/packs-test
|
||||
|
|
1
activestorage/.gitignore
vendored
1
activestorage/.gitignore
vendored
|
@ -1,6 +1,5 @@
|
|||
/src/
|
||||
/test/dummy/db/*.sqlite3
|
||||
/test/dummy/db/*.sqlite3-journal
|
||||
/test/dummy/db/*.sqlite3-*
|
||||
/test/dummy/log/*.log
|
||||
/test/dummy/tmp/
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
<% if sqlite3? -%>
|
||||
# Ignore the default SQLite database.
|
||||
/db/*.sqlite3
|
||||
/db/*.sqlite3-journal
|
||||
/db/*.sqlite3-*
|
||||
|
||||
<% end -%>
|
||||
|
|
|
@ -4,7 +4,6 @@ pkg/
|
|||
<% if with_dummy_app? -%>
|
||||
<% if sqlite3? -%>
|
||||
<%= dummy_path %>/db/*.sqlite3
|
||||
<%= dummy_path %>/db/*.sqlite3-journal
|
||||
<%= dummy_path %>/db/*.sqlite3-*
|
||||
<% end -%>
|
||||
<%= dummy_path %>/log/*.log
|
||||
|
|
Loading…
Reference in a new issue