Merge branch 'master' of git://github.com/bobtfish/Gitalist
[catagits/Gitalist.git] / lib / Gitalist / Git / Repo.pm
index e63ef97..4a5d491 100644 (file)
@@ -2,7 +2,7 @@ use MooseX::Declare;
 
 =head1 NAME
 
-Git::Repo - Model of a repository directory
+Gitalist::Git::Repo - Model of a repository directory
 
 =head1 SYNOPSIS
 
@@ -55,8 +55,6 @@ found in repo_dir.
         lazy_build => 1,
     );
 
-    method BUILD { $self->projects() }
-
 
 =head1 METHODS
 
@@ -95,29 +93,20 @@ name.
     method _is_git_repo ($dir) {
         return -f $dir->file('HEAD') || -f $dir->file('.git', 'HEAD');
     }
+}                               # end class
 
+__END__
 
 =head1 SEE ALSO
 
 L<Gitalist::Git::Project>
 
-=head1 AUTHORS AND COPYRIGHT
+=head1 AUTHORS
 
-  Catalyst application:
-    (C) 2009 Venda Ltd and Dan Brook <dbrook@venda.com>
-
-  Original gitweb.cgi from which this was derived:
-    (C) 2005-2006, Kay Sievers <kay.sievers@vrfy.org>
-    (C) 2005, Christian Gierke
+See L<Gitalist> for authors.
 
 =head1 LICENSE
 
-FIXME - Is this going to be GPLv2 as per gitweb? If so this is broken..
-
-This library is free software. You can redistribute it and/or modify
-it under the same terms as Perl itself.
+See L<Gitalist> for the license.
 
 =cut
-
-
-}                               # end class