Sha256: 5e287f2c568532ab52e88181c9db130d1b59a97d466b844c485b2731e763fd24
Contents?: true
Size: 871 Bytes
Versions: 38
Compression:
Stored size: 871 Bytes
Contents
# See https://help.github.com/articles/ignoring-files for more about ignoring files. # # If you find yourself ignoring temporary files generated by your text editor # or operating system, you probably want to add a global ignore instead: # git config --global core.excludesfile '~/.gitignore_global' # Ignore bundler config. /.bundle <% if sqlite3? -%> # Ignore the default SQLite database. /db/*.sqlite3 /db/*.sqlite3-* <% end -%> # Ignore all logfiles and tempfiles. /log/* /tmp/* <% if keeps? -%> !/log/.keep !/tmp/.keep # Ignore pidfiles, but keep the directory. /tmp/pids/* !/tmp/pids/ !/tmp/pids/.keep <% end -%> <% unless skip_active_storage? -%> # Ignore uploaded files in development. /storage/* <% if keeps? -%> !/storage/.keep /tmp/storage/* !/tmp/storage/ !/tmp/storage/.keep <% end -%> <% end -%> <% unless options.api? -%> /public/assets <% end -%>
Version data entries
38 entries across 35 versions & 5 rubygems