Browse Source

Merge pull request #52 from kevinburke/authors

Contributors
inconshreveable 11 years ago
parent
commit
afed73f4c0
2 changed files with 16 additions and 6 deletions
  1. 11 5
      CONTRIBUTORS
  2. 5 1
      Makefile

+ 11 - 5
CONTRIBUTORS

@@ -1,6 +1,12 @@
 Contributors to ngrok, both large and small:
-Alan Shreve      (inconshreveable)
-Kyle Conroy      (kyleconroy)
-Caleb Spare      (cespare)
-Stephen Huenneke (skastel)
-Nick Presta      (nickpresta)
+
+- Alan Shreve 
+- Brandon Philips 
+- Caleb Spare 
+- Jay Hayes 
+- Kevin Burke 
+- Kyle Conroy 
+- Nick Presta 
+- Stephen Huenneke 
+- inconshreveable 
+- jzs 

+ 5 - 1
Makefile

@@ -1,4 +1,4 @@
-.PHONY: default server client deps fmt clean all release-client release-server release-all client-assets server-assets
+.PHONY: default server client deps fmt clean all release-client release-server release-all client-assets server-assets contributors
 export GOPATH:=$(shell pwd)
 
 default: all
@@ -37,3 +37,7 @@ all: fmt client server
 
 clean:
 	go clean -i -r ngrok/...
+
+contributors:
+	echo "Contributors to ngrok, both large and small:\n" > CONTRIBUTORS
+	git log --raw | grep "^Author: " | sort | uniq | cut -d ' ' -f2- | sed 's/^/- /' | cut -d '<' -f1 >> CONTRIBUTORS