tags2uml
tags2uml copied to clipboard
Every .dot file I create with tags2uml.exe has nothing in it.
I run the tags2uml.exe like so. set var1=%cd% cd %1 dir /b/a/s *.go > c:\Users<UserName>\Desktop\storage\UMLDumps\myUmlList.txt cd c:\Users<UserName>\Desktop\storage\UMLDumps start c:\Users<UserName>\ctags\ctags.exe --fields=+latink -L myUmlList.txt start c:\Users<UserName>\Go_Workspace\bin\tags2uml.exe --infile tags --members=1 --methods=1 --outfile myUmlList.dot start c:\Users<UserName>\Graphviz\release\bin\dot.exe -Tpng -omyUmlList.png myUmlList.dot cd %var1%
Forgive me if my batch file isnt correct in some way, but everything runs fine, the tags file is completely populated with my directory structure/methods. So my trouble is going from the tags to the .dot file. The .dot file only has this in it. Any info at all as to why it isnt working would be appreciated. //////////////// digraph G { } ///////////////
On a side note: I have used both ctags58 && universal ctags to build the tags file. I know its recommended to use ctags58 from exuberant, and indeed, it does work as creating the tags file but neither work. The tags file included was only modified to give the upload a usable file format. tags.txt
.
This is because, ironically, tags2uml doesn't support go, only C++, Java, Python, Ruby and C# - https://github.com/ruben2020/tags2uml/issues/2
Also, as far as I can tell, this project is inactive.