Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Please use godeps or vendoring so we can tell what your dependencies are #55

Closed
gaffo opened this issue Feb 26, 2016 · 4 comments
Closed

Comments

@gaffo
Copy link

gaffo commented Feb 26, 2016

No description provided.

@evanphx
Copy link
Member

evanphx commented Feb 26, 2016

The library is supposed to be go get able. Are you having an issue with dependencies when using it via go get?

@gaffo
Copy link
Author

gaffo commented Feb 27, 2016

No that works

@muhqu
Copy link

muhqu commented Mar 15, 2016

@gaffo you don't need godeps or vendoring to tell what the dependencies are… you can use go list instead.

$ go list -f '{{ join .Imports "\n" }}' github.com/vektra/mockery/mockery | sort | uniq
bytes
fmt
github.com/vektra/errors
go/ast
go/parser
go/token
golang.org/x/tools/imports
io
os
path/filepath
strings
unicode

or

$ go list -f '{{ join .TestImports "\n" }}' github.com/vektra/mockery/mockery | sort | uniq
github.com/stretchr/testify/assert
os
path/filepath
testing

or use go list -json ... ...

@gaffo
Copy link
Author

gaffo commented Mar 25, 2016

@muhqu if only. that only tells you the names of the deps not the versions. Anyway closing this issue until theres a breaking dep change.

@gaffo gaffo closed this as completed Mar 25, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants