Skip to content

Commit

Permalink
Adding vendor folder for dependancies
Browse files Browse the repository at this point in the history
  • Loading branch information
jasdel committed Nov 6, 2015
1 parent 87173d6 commit 21f8e51
Show file tree
Hide file tree
Showing 8 changed files with 345 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
vendor
dist
doc
.yardoc
Gemfile.lock
Expand Down
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ LINTIGNOREDOC='service/[^/]+/(api|service)\.go:.+(comment on exported|should hav
LINTIGNORECONST='service/[^/]+/(api|service)\.go:.+(type|struct field|const|func) ([^ ]+) should be ([^ ]+)'
LINTIGNORESTUTTER='service/[^/]+/(api|service)\.go:.+(and that stutters)'
LINTIGNOREINFLECT='service/[^/]+/(api|service)\.go:.+method .+ should be '
LINTIGNOREDEPS='vendor/.+\.go'

help:
@echo "Please use \`make <target>' where <target> is one of"
Expand Down Expand Up @@ -38,7 +39,7 @@ integration: deps
lint: deps
@echo "golint ./..."
@lint=`golint ./...`; \
lint=`echo "$$lint" | grep -E -v -e ${LINTIGNOREDOT} -e ${LINTIGNOREDOC} -e ${LINTIGNORECONST} -e ${LINTIGNORESTUTTER} -e ${LINTIGNOREINFLECT}`; \
lint=`echo "$$lint" | grep -E -v -e ${LINTIGNOREDOT} -e ${LINTIGNOREDOC} -e ${LINTIGNORECONST} -e ${LINTIGNORESTUTTER} -e ${LINTIGNOREINFLECT} -e ${LINTIGNOREDEPS}`; \
echo "$$lint"; \
if [ "$$lint" != "" ]; then exit 1; fi

Expand All @@ -63,4 +64,4 @@ bench:
@go test -bench . -benchmem -tags 'bench' ./...

bench-protocol:
@go test -bench . -benchmem -tags 'bench' ./private/protocol/...
@go test -bench . -benchmem -tags 'bench' ./private/protocol/...
14 changes: 14 additions & 0 deletions vendor/github.com/vaughan0/go-ini/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

70 changes: 70 additions & 0 deletions vendor/github.com/vaughan0/go-ini/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

123 changes: 123 additions & 0 deletions vendor/github.com/vaughan0/go-ini/ini.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

43 changes: 43 additions & 0 deletions vendor/github.com/vaughan0/go-ini/ini_linux_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

89 changes: 89 additions & 0 deletions vendor/github.com/vaughan0/go-ini/ini_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions vendor/github.com/vaughan0/go-ini/test.ini

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 21f8e51

Please sign in to comment.