-
Notifications
You must be signed in to change notification settings - Fork 45
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
Getting dependencies with "..." adds unnecessary packages #24
Comments
fixed with: pkieltyka@c60be07 .. this does change Goop a bit, since it won't just magically grab every dependency under the sun.. but thats a bad thing to do anyways in my opinion.. |
I'd love to get another opinion on this, but I think its best to be explicit about is instead for the developer to specify the "..." at the end of a repo definition in the Goopfile themselves instead of this being implied for every entry. ie. in a Goopfile
vs.
|
+1 for explicit dependency path. I'm having a problem with circular dependency and came across this patch. This doesn't solve dependency conflicts, but the default "grab everything" behavior mades things much worse. |
Yea goop sucks. Lots of issues and short comings. On Friday, December 19, 2014 at 2:51 AM, Zee Yang wrote:
|
I don't think the ... notation is necessary. I would prefer to have a |
Using
...
at the end of ago get
, will fetch all of the packages under that path. But in some projects this will import unnecessary packages.. for example like, https://github.com/garyburd/go-oauth. Adding that to your Goopfile will try to fetch the "examples" package and add theappengine
as a dependency, which clear is not a good thing :|The text was updated successfully, but these errors were encountered: