aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/rails/plugin/templates/gitignore
blob: 7a68da5c4b039beb542af84fe5e87ea316e16e4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.bundle/
log/*.log
pkg/
<% if with_dummy_app? -%>
<% if sqlite3? -%>
<%= dummy_path %>/db/*.sqlite3
<%= dummy_path %>/db/*.sqlite3-journal
<% end -%>
<%= dummy_path %>/log/*.log
<% unless options[:skip_yarn] -%>
<%= dummy_path %>/node_modules/
<%= dummy_path %>/yarn-error.log
<% end -%>
<% unless skip_active_storage? -%>
<%= dummy_path %>/storage/
<% end -%>
<%= dummy_path %>/tmp/
<% end -%>