Sha256: 82cec544362f525bd08d7403735b4f05c9097dde5e95f55e5eb61347b611a105
Contents?: true
Size: 1.23 KB
Versions: 7
Compression:
Stored size: 1.23 KB
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 OS based config files *.swp *.Thumbs.db *.DS_Store */.DS_Store .backup .idea .local .project .vscode dump.rdb # Ignore Rails generated caching files .bundle/ cache/ coverage/ .sass-cache/ vendor/bundle vendor/cache # Ignore basic notes, docs, etc docs/* # Ignore Generated files, that should be build when pushing to production public/assets/* public/javascripts/*.js public/packs public/stylesheets/*.css # Ignore the default SQLite database. *.sql /db/*.sqlite3 /db/*.sqlite3-journal db/database.sqlite.yml db/database.oracle.yml db/data/seed.rb db/scheme.rb # Ignore Vims files *~ *.swp # Ignore all logfiles and tempfiles. .byebug_history /log/* /tmp/* !/log/.keep !/tmp/.keep # Ignore uploaded files in development /storage/* !/storage/.keep # Node / Yarn package files node_modules node_modules/ yarn-error.log # Ignore master key for decrypting credentials and more. /config/master.key # Ignore application based files .vagrant
Version data entries
7 entries across 7 versions & 1 rubygems