rails/railties/lib/rails/generators/rails/plugin/templates/gitignore.tt

22 lines
421 B
Plaintext

/.bundle/
/doc/
/log/*.log
/pkg/
/tmp/
<% if with_dummy_app? -%>
<% if sqlite3? -%>
/<%= dummy_path %>/db/*.sqlite3
/<%= dummy_path %>/db/*.sqlite3-*
<% end -%>
/<%= dummy_path %>/log/*.log
<% if options[:webpack] -%>
/<%= dummy_path %>/node_modules/
/<%= dummy_path %>/yarn-error.log
<% end -%>
<% unless skip_active_storage? -%>
/<%= dummy_path %>/storage/
<% end -%>
/<%= dummy_path %>/tmp/
<% end -%>
.byebug_history