.gitignore 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # ---> Rails
  2. *.rbc
  3. capybara-*.html
  4. .rspec
  5. /log
  6. /tmp
  7. /db/*.sqlite3
  8. /db/*.sqlite3-journal
  9. /public/system
  10. /coverage/
  11. /spec/tmp
  12. **.orig
  13. rerun.txt
  14. pickle-email-*.html
  15. # TODO Comment out these rules if you are OK with secrets being uploaded to the repo
  16. config/initializers/secret_token.rb
  17. config/secrets.yml
  18. ## Environment normalisation:
  19. /.bundle
  20. /vendor/bundle
  21. # these should all be checked in to normalise the environment:
  22. # Gemfile.lock, .ruby-version, .ruby-gemset
  23. # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
  24. .rvmrc
  25. # if using bower-rails ignore default bower_components path bower.json files
  26. /vendor/assets/bower_components
  27. *.bowerrc
  28. bower.json
  29. # Ignore pow environment settings
  30. .powenv
  31. # ---> Ruby
  32. *.gem
  33. *.rbc
  34. /.config
  35. /coverage/
  36. /InstalledFiles
  37. /pkg/
  38. /spec/reports/
  39. /spec/examples.txt
  40. /test/tmp/
  41. /test/version_tmp/
  42. /tmp/
  43. ## Specific to RubyMotion:
  44. .dat*
  45. .repl_history
  46. build/
  47. ## Documentation cache and generated files:
  48. /.yardoc/
  49. /_yardoc/
  50. /doc/
  51. /rdoc/
  52. ## Environment normalisation:
  53. /.bundle/
  54. /vendor/bundle
  55. /lib/bundler/man/
  56. # for a library or gem, you might want to ignore these files since the code is
  57. # intended to run in multiple environments; otherwise, check them in:
  58. # Gemfile.lock
  59. # .ruby-version
  60. # .ruby-gemset
  61. # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
  62. .rvmrc