.gitignore 888 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # See http://help.github.com/ignore-files/ for more about ignoring files.
  2. #
  3. # If you find yourself ignoring temporary files generated by your text editor
  4. # or operating system, you probably want to add a global ignore instead:
  5. # git config --global core.excludesfile ~/.gitignore_global
  6. # Ignore bundler config
  7. /.bundle
  8. # Ignore the default SQLite database.
  9. /db/*.sqlite3
  10. # Ignore all logfiles and tempfiles.
  11. /log/*.log
  12. /tmp/websocket*
  13. /tmp/cache*
  14. /tmp/pids/*
  15. /tmp/*.png
  16. /public/assets/*.*
  17. /public/assets/app/*
  18. /public/assets/custom/*
  19. # Ignore custom gem file
  20. Gemfile.local
  21. # Ignore .project files
  22. /.project
  23. # Ignore local database settings
  24. /config/database.yml
  25. # Ignore mac stuff
  26. .DS_Store
  27. # Ignore .swp files
  28. .*.swp
  29. # Ignore coverage stuff
  30. /coverage/*
  31. # Ignore local changes to schema.rb (e. g. through extentions)
  32. db/schema.rb
  33. # Ignore Rubymine config
  34. /.idea
  35. node_modules