0.0.3 • Published 8 years ago

objc-dep v0.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

objc-dep: Analyze dependency in an Objective-C project

This project is inspired by objc_dep

Installation

npm install objc-dep -g

Usage

objc-dep --project_path=[Objective-C project path] --output=[json|dot]

Arguments

  • --project_path path to folder hierarchy containing Objective-C files required
  • --output, -o output format(json|dot) required
  • --help, -h output usage information
  • --exclude, -x regular expression of substrings to exclude from module names
  • --ignore, -i list of subfolder names to ignore
  • --system, -s include system dependencies
  • --extensions, -e print file extensions
  • --root, -r print file extensions

Output

dot

The output can be displayed in Graphviz or OmniGraffle

json

{
    // `ClassB` depends on `ClassA`
    "ClassA": [ ClassB ]
}

License

MIT

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago