mirror of https://github.com/rails/rails
Clean up and consolidate .gitignores
* Global ignores at toplevel .gitignore * Component-specific ignores in each toplevel directory * Remove `actionview/test/tmp/.keep` for JRuby ``` rm actionview/test/tmp/ -fr cd actionview/ bundle exec jruby -Itest test/template/digestor_test.rb ``` Related to #11743, #30392. Closes #29978.
This commit is contained in:
parent
5645149d3a
commit
0f98954a83
|
@ -1,25 +1,16 @@
|
|||
# Don't put *.swp, *.bak, etc here; those belong in a global ~/.gitignore.
|
||||
# Don't put *.swp, *.bak, etc here; those belong in a global .gitignore.
|
||||
# Check out https://help.github.com/articles/ignoring-files for how to set that up.
|
||||
|
||||
.Gemfile
|
||||
.ruby-version
|
||||
.byebug_history
|
||||
debug.log
|
||||
pkg
|
||||
.ruby-version
|
||||
/*/doc/
|
||||
/*/test/tmp/
|
||||
/.bundle
|
||||
/dist
|
||||
/doc/rdoc
|
||||
/*/doc
|
||||
/*/test/tmp
|
||||
/activerecord/sqlnet.log
|
||||
/activemodel/test/fixtures/fixture_database.sqlite3
|
||||
/activesupport/test/fixtures/isolation_test
|
||||
/activestorage/test/service/configurations.yml
|
||||
/railties/test/500.html
|
||||
/railties/test/fixtures/tmp
|
||||
/railties/test/initializer/root/log
|
||||
/railties/doc
|
||||
/railties/tmp
|
||||
/guides/output
|
||||
/dist/
|
||||
/doc/
|
||||
/guides/output/
|
||||
debug.log
|
||||
node_modules/
|
||||
/actionview/log
|
||||
package-lock.json
|
||||
pkg/
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
/lib/assets/compiled
|
||||
/tmp
|
||||
/lib/assets/compiled/
|
||||
/tmp/
|
||||
|
|
|
@ -1,2 +1,5 @@
|
|||
/lib/assets/compiled
|
||||
/tmp
|
||||
/lib/assets/compiled/
|
||||
/log/
|
||||
/test/fixtures/public/absolute/
|
||||
/test/ujs/log/
|
||||
/tmp/
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
absolute/*
|
|
@ -1 +0,0 @@
|
|||
/log
|
|
@ -0,0 +1,3 @@
|
|||
/sqlnet.log
|
||||
/test/config.yml
|
||||
/test/fixtures/*.sqlite*
|
|
@ -1 +0,0 @@
|
|||
performance.sql
|
|
@ -1 +0,0 @@
|
|||
/config.yml
|
|
@ -1 +0,0 @@
|
|||
*.sqlite*
|
|
@ -1,7 +1,6 @@
|
|||
.byebug_history
|
||||
node_modules
|
||||
src
|
||||
test/dummy/db/*.sqlite3
|
||||
test/dummy/db/*.sqlite3-journal
|
||||
test/dummy/log/*.log
|
||||
test/dummy/tmp/
|
||||
/src/
|
||||
/test/dummy/db/*.sqlite3
|
||||
/test/dummy/db/*.sqlite3-journal
|
||||
/test/dummy/log/*.log
|
||||
/test/dummy/tmp/
|
||||
/test/service/configurations.yml
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
/test/fixtures/isolation_test/
|
|
@ -1 +1,5 @@
|
|||
log/
|
||||
/log/
|
||||
/test/500.html
|
||||
/test/fixtures/tmp/
|
||||
/test/initializer/root/log/
|
||||
/tmp/
|
||||
|
|
Loading…
Reference in New Issue