Module: RepoDependencyGraph::CLI

Defined in:
lib/repo_dependency_graph/cli.rb

Class Method Summary collapse

Class Method Details

.run(argv) ⇒ Object



7
8
9
10
11
12
13
# File 'lib/repo_dependency_graph/cli.rb', line 7

def run(argv)
  options = parse_options(argv)
  RepoDependencyGraph::Output.draw(
    RepoDependencyGraph.dependencies(options), options
  )
  0
end