├── .gitignore ├── README.md ├── assets ├── clusters.template ├── dotGraph.template └── legend.template ├── bin ├── swift-relationship-graph └── swift-relationship-graph.coffee ├── coffeelint.json ├── examples ├── .gitignore ├── alamofire.sh ├── haneke.sh └── object-mapper.sh ├── lib ├── analyzer.coffee ├── constants.coffee ├── dot-graph-code.coffee ├── dot-graph-pdf.coffee ├── dot-tree-code.coffee ├── dot-tree-pdf.coffee └── relationship-graph.coffee └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumolari/swift-relationship-graph/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumolari/swift-relationship-graph/HEAD/README.md -------------------------------------------------------------------------------- /assets/clusters.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumolari/swift-relationship-graph/HEAD/assets/clusters.template -------------------------------------------------------------------------------- /assets/dotGraph.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumolari/swift-relationship-graph/HEAD/assets/dotGraph.template -------------------------------------------------------------------------------- /assets/legend.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumolari/swift-relationship-graph/HEAD/assets/legend.template -------------------------------------------------------------------------------- /bin/swift-relationship-graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumolari/swift-relationship-graph/HEAD/bin/swift-relationship-graph -------------------------------------------------------------------------------- /bin/swift-relationship-graph.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumolari/swift-relationship-graph/HEAD/bin/swift-relationship-graph.coffee -------------------------------------------------------------------------------- /coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumolari/swift-relationship-graph/HEAD/coffeelint.json -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- 1 | */ 2 | *.pdf -------------------------------------------------------------------------------- /examples/alamofire.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumolari/swift-relationship-graph/HEAD/examples/alamofire.sh -------------------------------------------------------------------------------- /examples/haneke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumolari/swift-relationship-graph/HEAD/examples/haneke.sh -------------------------------------------------------------------------------- /examples/object-mapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumolari/swift-relationship-graph/HEAD/examples/object-mapper.sh -------------------------------------------------------------------------------- /lib/analyzer.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumolari/swift-relationship-graph/HEAD/lib/analyzer.coffee -------------------------------------------------------------------------------- /lib/constants.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumolari/swift-relationship-graph/HEAD/lib/constants.coffee -------------------------------------------------------------------------------- /lib/dot-graph-code.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumolari/swift-relationship-graph/HEAD/lib/dot-graph-code.coffee -------------------------------------------------------------------------------- /lib/dot-graph-pdf.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumolari/swift-relationship-graph/HEAD/lib/dot-graph-pdf.coffee -------------------------------------------------------------------------------- /lib/dot-tree-code.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumolari/swift-relationship-graph/HEAD/lib/dot-tree-code.coffee -------------------------------------------------------------------------------- /lib/dot-tree-pdf.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumolari/swift-relationship-graph/HEAD/lib/dot-tree-pdf.coffee -------------------------------------------------------------------------------- /lib/relationship-graph.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumolari/swift-relationship-graph/HEAD/lib/relationship-graph.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sumolari/swift-relationship-graph/HEAD/package.json --------------------------------------------------------------------------------