nst / objc_dep

Graph the import dependancies in an Objective-C project
1.35k stars 144 forks source link

Need examples for -x, -i #5

Closed jonreid closed 11 years ago

jonreid commented 11 years ago

Please add examples of the new command-line arguments. I'm having trouble figuring out the new ignore parameter.

mikkelee commented 11 years ago

I've been running it like this:

% python objc_dep.py /path/to/repo -x "(^Internal|secret)" -i subdir1 subdir2 > graph.dot

Will exclude files that begin with "Internal", or contain the word "secret" -- additionally all files in subdir1+subdir2 are ignored.

nst commented 11 years ago

thank you for the call example @mikkelee