.gitignore 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # MRT files
  2. *.mrt
  3. *.mrt.bz2
  4. *.mrt.gz
  5. *.mrt.xz
  6. # Test files
  7. test.rb
  8. # Result files
  9. *.json
  10. *.db
  11. # Configuration files
  12. config.json
  13. config.yaml
  14. # ---> Ruby
  15. *.gem
  16. *.rbc
  17. /.config
  18. /coverage/
  19. /InstalledFiles
  20. /pkg/
  21. /spec/reports/
  22. /spec/examples.txt
  23. /test/tmp/
  24. /test/version_tmp/
  25. /tmp/
  26. .rake_tasks~
  27. # Used by dotenv library to load environment variables.
  28. # .env
  29. # Ignore Byebug command history file.
  30. .byebug_history
  31. ## Specific to RubyMotion:
  32. .dat*
  33. .repl_history
  34. build/
  35. *.bridgesupport
  36. build-iPhoneOS/
  37. build-iPhoneSimulator/
  38. ## Documentation cache and generated files:
  39. /.yardoc/
  40. /_yardoc/
  41. /doc/
  42. /rdoc/
  43. ## Environment normalization:
  44. /.bundle/
  45. /vendor/bundle
  46. /lib/bundler/man/
  47. # for a library or gem, you might want to ignore these files since the code is
  48. # intended to run in multiple environments; otherwise, check them in:
  49. Gemfile.lock
  50. .ruby-version
  51. .ruby-gemset
  52. # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
  53. .rvmrc
  54. # Used by RuboCop. Remote config files pulled in from inherit_from directive.
  55. .rubocop-https?--*