fixing inline pod documentation for the debian package. (missing whatis entry)
[catagits/Gitalist.git] / lib / Gitalist / Git / Object / Blob.pm
index 51be7e3..05de103 100644 (file)
@@ -2,7 +2,38 @@ package Gitalist::Git::Object::Blob;
 use MooseX::Declare;
 
 class Gitalist::Git::Object::Blob extends Gitalist::Git::Object {
-  use MooseX::Types::Common::String qw/NonEmptySimpleStr/;
-
   has '+type' => ( default => 'blob' );
 }
+
+1;
+
+__END__
+
+=head1 NAME
+
+Gitalist::Git::Object::Blob - Git::Object::Blob module for Gitalist
+
+=head1 SYNOPSIS
+
+    my $blob = Repository->get_object($blob_sha1);
+
+=head1 DESCRIPTION
+
+Represents a blob object in a git repository.
+Subclass of C<Gitalist::Git::Object>.
+
+
+=head1 ATTRIBUTES
+
+
+=head1 METHODS
+
+=head1 AUTHORS
+
+See L<Gitalist> for authors.
+
+=head1 LICENSE
+
+See L<Gitalist> for the license.
+
+=cut