.gitignore 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. # Used by dotenv library to load environment variables.
  14. # .env
  15. # Ignore Byebug command history file.
  16. .byebug_history
  17. ## Specific to RubyMotion:
  18. .dat*
  19. .repl_history
  20. build/
  21. *.bridgesupport
  22. build-iPhoneOS/
  23. build-iPhoneSimulator/
  24. ## Specific to RubyMotion (use of CocoaPods):
  25. #
  26. # We recommend against adding the Pods directory to your .gitignore. However
  27. # you should judge for yourself, the pros and cons are mentioned at:
  28. # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
  29. #
  30. # vendor/Pods/
  31. ## Documentation cache and generated files:
  32. /.yardoc/
  33. /_yardoc/
  34. /doc/
  35. /rdoc/
  36. ## Environment normalization:
  37. /.bundle/
  38. /vendor/bundle
  39. /lib/bundler/man/
  40. # for a library or gem, you might want to ignore these files since the code is
  41. # intended to run in multiple environments; otherwise, check them in:
  42. # Gemfile.lock
  43. # .ruby-version
  44. # .ruby-gemset
  45. # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
  46. .rvmrc
  47. # Used by RuboCop. Remote config files pulled in from inherit_from directive.
  48. # .rubocop-https?--*
  49. # ---> C++
  50. # Prerequisites
  51. *.d
  52. # Compiled Object files
  53. *.slo
  54. *.lo
  55. *.o
  56. *.obj
  57. # Precompiled Headers
  58. *.gch
  59. *.pch
  60. # Compiled Dynamic libraries
  61. *.so
  62. *.dylib
  63. *.dll
  64. # Fortran module files
  65. *.mod
  66. *.smod
  67. # Compiled Static libraries
  68. *.lai
  69. *.la
  70. *.a
  71. *.lib
  72. # Executables
  73. *.exe
  74. *.out
  75. *.app