Skip to content

Commit

Permalink
Added external deps using glide
Browse files Browse the repository at this point in the history
  • Loading branch information
tamccall committed Apr 2, 2017
1 parent e4fa388 commit b99f4a9
Show file tree
Hide file tree
Showing 460 changed files with 109,329 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
mocks
/mocks
15 changes: 11 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,19 @@ SHELL=bash

all: clean fmt test install integration

novendor=$(shell glide novendor)

clean:
rm -rf mocks

fmt:
go fmt ./...
go fmt ${novendor}

test:
go test ./...
go test ${novendor}

install:
go install ./...
go install ${novendor}

integration:
rm -rf mocks
Expand All @@ -24,4 +26,9 @@ integration:
if [ ! -f "mocks/AsyncProducer.go" ]; then \
echo "AsyncProducer.go not created"; \
echo 1; \
fi
fi

glide_up:
glide up
find vendor -type f ! -name '*.go' -a ! -name '*.s' -a ! -name '*.h' -a ! -name '*.proto' -a ! -name 'LICENSE*' | xargs -L 10 rm
find vendor -type f -name '*_test.go' | xargs -L 10 rm
28 changes: 28 additions & 0 deletions glide.lock

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

1 change: 1 addition & 0 deletions glide.lock.yaml

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

11 changes: 11 additions & 0 deletions glide.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package: github.com/vektra/mockery
homepage: https://github.com/vektra/mockery
excludeDirs:
- mockery/fixtures
import:
- package: golang.org/x/tools
subpackages:
- go/loader
- imports
testImport:
- package: github.com/stretchr/testify
15 changes: 15 additions & 0 deletions vendor/github.com/davecgh/go-spew/LICENSE

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

152 changes: 152 additions & 0 deletions vendor/github.com/davecgh/go-spew/spew/bypass.go

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

38 changes: 38 additions & 0 deletions vendor/github.com/davecgh/go-spew/spew/bypasssafe.go

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

Loading

0 comments on commit b99f4a9

Please sign in to comment.