I'm attempting to use a ruby on rails application to look through and visually organize dependencies. As of now, I'll be using the Maven Dependency tree plugin.
However (if my understanding of this is correct), I cannot run "mvn dependency:tree" in a ruby script on someone else's computer. So the pom files/project must be local.
The only idea I've come up is to pull the entire Github repository into the rails app, which I haven't been able to find a way to do this (Problem 1). Secondly, that would take a long time, but that doesn't matter for my purposes.
Are there better ways to do this that I'm just missing in my research?