Releases: VividCortex/johnny-deps
Version 0.2.3
Parallel package installation
I just had to jump the version counter on this one, basically thanks to @elcuervo being an absolute boss johnny_deps
now installs packages in parallel.
This should speed up significantly the installation of large dependency lists, he also did it with three lines of bash, which is just ridiculous.
This is not much of a benchmark, but on my machine and using my test Godeps file (consisting basically of random packages with random versions) I got these results:
johnny-deps 0.1.5 : 1m41s
johnny-deps 0.2.2 : 45s
I love this man, give him your unending love and all the bacon he can eat <3.
Better Comments
Thanks to @nu7hatch johnny_deps now has better commenting, things like
github.com/VividCortex/ewma v1.0 # Note: package robustly really needs this dependency.
now work and the code has been tidied up a bit too, we are now in 12 lines of actual code. Pretty sweet. :)
Adds comment feature.
This release adds the ability to comment lines in the Godeps file, like so:
github.com/pote/johnny-deps-testing-package v5.0
#github.com/VividCortex/ewma v1.0
# This line is a comment.
# this is an oddly-placed comment
It should be noted thought that in the interest of simplicity only lines that begin with a #
are comments, so therefore comments like the one below are not supported.
github.com/pote/johnny-deps-testing-package v5.0 # This is an invalid comment.