You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Rails.gitignore 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. *.rbc
  2. capybara-*.html
  3. .rspec
  4. /db/*.sqlite3
  5. /db/*.sqlite3-journal
  6. /db/*.sqlite3-[0-9]*
  7. /public/system
  8. /coverage/
  9. /spec/tmp
  10. *.orig
  11. rerun.txt
  12. pickle-email-*.html
  13. # Ignore all logfiles and tempfiles.
  14. /log/*
  15. /tmp/*
  16. !/log/.keep
  17. !/tmp/.keep
  18. # TODO Comment out this rule if you are OK with secrets being uploaded to the repo
  19. config/initializers/secret_token.rb
  20. config/master.key
  21. # Only include if you have production secrets in this file, which is no longer a Rails default
  22. # config/secrets.yml
  23. # dotenv
  24. # TODO Comment out this rule if environment variables can be committed
  25. .env
  26. ## Environment normalization:
  27. /.bundle
  28. /vendor/bundle
  29. # these should all be checked in to normalize the environment:
  30. # Gemfile.lock, .ruby-version, .ruby-gemset
  31. # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
  32. .rvmrc
  33. # if using bower-rails ignore default bower_components path bower.json files
  34. /vendor/assets/bower_components
  35. *.bowerrc
  36. bower.json
  37. # Ignore pow environment settings
  38. .powenv
  39. # Ignore Byebug command history file.
  40. .byebug_history
  41. # Ignore node_modules
  42. node_modules/
  43. # Ignore precompiled javascript packs
  44. /public/packs
  45. /public/packs-test
  46. /public/assets
  47. # Ignore yarn files
  48. /yarn-error.log
  49. yarn-debug.log*
  50. .yarn-integrity
  51. # Ignore uploaded files in development
  52. /storage/*
  53. !/storage/.keep