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

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