.gitignore 838 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. /public/assets/*.*
  16. /public/assets/app/*
  17. /public/assets/custom/*
  18. # Ignore .project files
  19. /.project
  20. # Ignore local database settings
  21. /config/database.yml
  22. # Ignore mac stuff
  23. .DS_Store
  24. # Ignore .swp files
  25. .*.swp
  26. # Ignore coverage stuff
  27. /coverage/*
  28. # Ignore local changes to schema.rb (e. g. through extentions)
  29. db/schema.rb
  30. # Ignore Rubymine config
  31. /.idea
  32. node_modules