diff options
| author | franck cuny <franck@lumberjaph.net> | 2010-01-30 16:35:44 +0100 |
|---|---|---|
| committer | franck cuny <franck@lumberjaph.net> | 2010-01-30 16:35:44 +0100 |
| commit | 1774a184943070ba9c892a30bc563d073209c97d (patch) | |
| tree | c4d5582abf0839c242d40f92c63f73285a908088 /crawl.pl | |
| parent | don't fetch info if profile exists (diff) | |
| download | github-explorer-1774a184943070ba9c892a30bc563d073209c97d.tar.gz | |
start to gen. gexf
Diffstat (limited to 'crawl.pl')
| -rw-r--r-- | crawl.pl | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -8,7 +8,8 @@ use Getopt::Long; GetOptions( 'deploy' => \my $deploy, 'profiles' => \my $profiles, - 'repo' => \my $repo + 'repo' => \my $repo, + 'graph' => \my $graph, ); my $gh = githubexplorer->new( @@ -21,5 +22,5 @@ my $gh = githubexplorer->new( ); $gh->deploy if $deploy; -$gh->harvest_profiles; - +$gh->harvest_profiles if $profiles; +$gh->gen_graph if $graph; |
