.gitignore 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. # ---> Ruby
  2. *.gem
  3. *.rbc
  4. /.config
  5. /coverage/
  6. /InstalledFiles
  7. /pkg/
  8. /spec/reports/
  9. /spec/examples.txt
  10. /test/tmp/
  11. /test/version_tmp/
  12. /tmp/
  13. ## Specific to RubyMotion:
  14. .dat*
  15. .repl_history
  16. build/
  17. ## Documentation cache and generated files:
  18. /.yardoc/
  19. /_yardoc/
  20. /doc/
  21. /rdoc/
  22. ## Environment normalisation:
  23. /.bundle/
  24. /vendor/bundle
  25. /lib/bundler/man/
  26. # for a library or gem, you might want to ignore these files since the code is
  27. # intended to run in multiple environments; otherwise, check them in:
  28. # Gemfile.lock
  29. # .ruby-version
  30. # .ruby-gemset
  31. # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
  32. .rvmrc
  33. # ---> C
  34. # Object files
  35. *.o
  36. *.ko
  37. *.obj
  38. *.elf
  39. # Precompiled Headers
  40. *.gch
  41. *.pch
  42. # Libraries
  43. *.lib
  44. *.a
  45. *.la
  46. *.lo
  47. # Shared objects (inc. Windows DLLs)
  48. *.dll
  49. *.so
  50. *.so.*
  51. *.dylib
  52. # Executables
  53. *.exe
  54. *.out
  55. *.app
  56. *.i*86
  57. *.x86_64
  58. *.hex
  59. # Debug files
  60. *.dSYM/
  61. # ---> C++
  62. # Compiled Object files
  63. *.slo
  64. *.lo
  65. *.o
  66. *.obj
  67. # Precompiled Headers
  68. *.gch
  69. *.pch
  70. # Compiled Dynamic libraries
  71. *.so
  72. *.dylib
  73. *.dll
  74. # Fortran module files
  75. *.mod
  76. # Compiled Static libraries
  77. *.lai
  78. *.la
  79. *.a
  80. *.lib
  81. # Executables
  82. *.exe
  83. *.out
  84. *.app