summary refs log tree commit diff
path: root/lib/githubexplorer.pm
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-02-12 12:00:07 +0100
committerfranck cuny <franck@lumberjaph.net>2010-02-12 12:00:07 +0100
commit552357b2c3fe58304d4e46e21031998b5d3c98e1 (patch)
treed80e46612a84d8809eddcf7daceba3847c1f2023 /lib/githubexplorer.pm
parentfix (diff)
downloadgithub-explorer-552357b2c3fe58304d4e46e21031998b5d3c98e1.tar.gz
wip
Diffstat (limited to '')
-rw-r--r--lib/githubexplorer.pm10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/githubexplorer.pm b/lib/githubexplorer.pm
index 4fc5aa5..9e5e134 100644
--- a/lib/githubexplorer.pm
+++ b/lib/githubexplorer.pm
@@ -82,4 +82,14 @@ sub graph_repo {
     }
 }
 
+sub extract_seed {
+    my $self = shift;
+    $self->_connect unless $self->has_schema;
+    my $profiles = $self->schema->resultset('Profiles')
+        ->search( { blog => { '!=' => undef }, blog => { '!=' => '' } } );
+    while ( my $pr = $profiles->next ) {
+    }
+}
+
+
 1;