We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44cc2e7 commit e069225Copy full SHA for e069225
railties/lib/rails/generators/rails/plugin/templates/gitignore.tt
@@ -1,19 +1,19 @@
1
-.bundle/
2
-log/*.log
3
-pkg/
+/.bundle/
+/log/*.log
+/pkg/
4
<% if with_dummy_app? -%>
5
<% if sqlite3? -%>
6
-<%= dummy_path %>/db/*.sqlite3
7
-<%= dummy_path %>/db/*.sqlite3-*
+/<%= dummy_path %>/db/*.sqlite3
+/<%= dummy_path %>/db/*.sqlite3-*
8
<% end -%>
9
-<%= dummy_path %>/log/*.log
+/<%= dummy_path %>/log/*.log
10
<% unless options[:skip_javascript] -%>
11
-<%= dummy_path %>/node_modules/
12
-<%= dummy_path %>/yarn-error.log
+/<%= dummy_path %>/node_modules/
+/<%= dummy_path %>/yarn-error.log
13
14
<% unless skip_active_storage? -%>
15
-<%= dummy_path %>/storage/
+/<%= dummy_path %>/storage/
16
17
-<%= dummy_path %>/tmp/
+/<%= dummy_path %>/tmp/
18
19
.byebug_history
0 commit comments