fixing inline pod documentation for the debian package. (missing whatis entry)
[catagits/Gitalist.git] / lib / Gitalist / Git / Object / Blob.pm
CommitLineData
f3083570 1package Gitalist::Git::Object::Blob;
2use MooseX::Declare;
3
4class Gitalist::Git::Object::Blob extends Gitalist::Git::Object {
18a8059a 5 has '+type' => ( default => 'blob' );
f3083570 6}
775e96e0 7
81;
9
10__END__
11
12=head1 NAME
13
2298d93f 14Gitalist::Git::Object::Blob - Git::Object::Blob module for Gitalist
775e96e0 15
c19af0d0 16=head1 SYNOPSIS
17
44a9ed75 18 my $blob = Repository->get_object($blob_sha1);
c19af0d0 19
775e96e0 20=head1 DESCRIPTION
21
c19af0d0 22Represents a blob object in a git repository.
23Subclass of C<Gitalist::Git::Object>.
24
25
26=head1 ATTRIBUTES
27
28
29=head1 METHODS
775e96e0 30
31=head1 AUTHORS
32
33See L<Gitalist> for authors.
34
35=head1 LICENSE
36
37See L<Gitalist> for the license.
38
39=cut