Remove unneeded =cut commands, and various other cleanups.
[catagits/Gitalist.git] / lib / Gitalist / Git / Object / Blob.pm
1 package Gitalist::Git::Object::Blob;
2 use MooseX::Declare;
3
4 class Gitalist::Git::Object::Blob extends Gitalist::Git::Object {
5   has '+type' => ( default => 'blob' );
6 }
7
8 1;
9
10 __END__
11
12 =head1 NAME
13
14 Gitalist::Git::Object::Blob
15
16 =head1 DESCRIPTION
17
18 Gitalist::Git::Object::Blob.
19
20 =head1 AUTHORS
21
22 See L<Gitalist> for authors.
23
24 =head1 LICENSE
25
26 See L<Gitalist> for the license.
27
28 =cut