AUTHORS 738 B

123456789101112131415161718192021222324252627282930
  1. The GoHBase Authors
  2. -------------------
  3. GoHBase ("gohbase") was originally written by Benoit Sigoure.
  4. All contributors are required to sign a "Contributor License Agreement" at
  5. http://opentsdb.net/contributing.html
  6. The following organizations and people have contributed at least 0.5% of the
  7. current code of GoHBase.
  8. (Please keep both lists sorted alphabetically.)
  9. Arista Networks, Inc.
  10. Andrey Elenskiy
  11. Benoit Sigoure
  12. This list can be obtained at any time with the following script:
  13. find src test -type f \
  14. | while read i; do \
  15. git blame -t $i 2>/dev/null; \
  16. done \
  17. | sed 's/^[0-9a-f]\{8\} [^(]*(\([^)]*\) [-+0-9 ]\{14,\}).*/\1/;s/ *$//' \
  18. | awk '{a[$0]++; t++} END{for(n in a) if (a[n]*100.0/t > 0.5) print n}' \
  19. | sort