.gitignore 415 B

1234567891011121314151617181920212223
  1. # Final publish location for module build
  2. pkg/
  3. # VIM files
  4. *.swp
  5. # Mac files
  6. .DS_Store
  7. # Generated directory for coverage results
  8. coverage/
  9. # Gem & bundler related files we do not want persisted to the repository
  10. Gemfile.lock
  11. .bundle
  12. vendor/
  13. # Used by rake spec, for temp modules and other test requirements
  14. spec/fixtures/
  15. # RVM files that are specific to developers implementation
  16. .ruby-version
  17. .ruby-gemset