From 51d533d19411d07f8e6684468b96ea578ccc2d01 Mon Sep 17 00:00:00 2001 From: David Gay Date: Sun, 29 Oct 2023 23:19:12 -0400 Subject: rails new . --css tailwind -d postgresql -a propshaft --skip-jbuilder --- .gitignore | 85 +++++++++++++++++++++++++------------------------------------- 1 file changed, 34 insertions(+), 51 deletions(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index d6aa672..dd0b122 100644 --- a/.gitignore +++ b/.gitignore @@ -1,58 +1,41 @@ -# ---> Ruby -*.gem -*.rbc -/.config -/coverage/ -/InstalledFiles -/pkg/ -/spec/reports/ -/spec/examples.txt -/test/tmp/ -/test/version_tmp/ -/tmp/ - -# Used by dotenv library to load environment variables. -# .env - -# Ignore Byebug command history file. -.byebug_history - -## Specific to RubyMotion: -.dat* -.repl_history -build/ -*.bridgesupport -build-iPhoneOS/ -build-iPhoneSimulator/ - -## Specific to RubyMotion (use of CocoaPods): +# See https://help.github.com/articles/ignoring-files for more about ignoring files. # -# We recommend against adding the Pods directory to your .gitignore. However -# you should judge for yourself, the pros and cons are mentioned at: -# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control -# -# vendor/Pods/ +# 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 + +# Ignore all environment files (except templates). +/.env* +!/.env*.erb + +# Ignore all logfiles and tempfiles. +/log/* +/tmp/* +!/log/.keep +!/tmp/.keep -## Documentation cache and generated files: -/.yardoc/ -/_yardoc/ -/doc/ -/rdoc/ +# Ignore pidfiles, but keep the directory. +/tmp/pids/* +!/tmp/pids/ +!/tmp/pids/.keep -## Environment normalization: -/.bundle/ -/vendor/bundle -/lib/bundler/man/ +# Ignore storage (uploaded files in development and any SQLite databases). +/storage/* +!/storage/.keep +/tmp/storage/* +!/tmp/storage/ +!/tmp/storage/.keep -# for a library or gem, you might want to ignore these files since the code is -# intended to run in multiple environments; otherwise, check them in: -# Gemfile.lock -# .ruby-version -# .ruby-gemset +/public/assets -# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: -.rvmrc +# Ignore master key for decrypting credentials and more. +/config/master.key -# Used by RuboCop. Remote config files pulled in from inherit_from directive. -# .rubocop-https?--* +/app/assets/builds/* +!/app/assets/builds/.keep +# JetBrains +.idea -- cgit v1.2.3