So folks, I need to sign all of the methods that have been changed in a commit, be it updated, removed, or added.
Example: In this commit
The changed methods were:
- br.ufrn.ase.Classe1.metodoB(int b)U
- br.ufrn.ase.Classe1.getV()D
- br.ufrn.ase.Classe1.metodoadicionado()A
- br.ufrn.ase.Classe2.metodoQualquer(int i)A
- br.ufrn.ase.Classe2.outro(int j)A
Does anyone have any idea how to do this, or do you know of a lib I already have? The code to access the commits and get the blob I already have. I'm developing in Java, but lib can be in any language.
Thank you in advance.