{
$Git::Raw::Commit::VERSION = '0.02';
}
use strict;
=head1 NAME
Git::Raw::Commit - libgit2 commit class
=head1 VERSION
version 0.02
=head1 DESCRIPTION
A C<Git::Raw::Commit> represents a Git commit.
=head1 METHODS
=head2 author( )
Retrieve the C<Git::Raw::Signature> representing the commit's author.
=head2 committer( )
Retrieve the C<Git::Raw::Signature> representing the commit's committer.
=head2 id( )
Retrieve the id of the commit, as string.
=head2 message( )
Retrieve the commit's message.
=head2 time( )
Retrieve the committer time of a commit.
=head2 offset( )
Retrieve the committer time offset (in minutes) of a commit.
=head1 AUTHOR
Alessandro Ghedini <alexbio@cpan.org>
=head1 LICENSE AND COPYRIGHT
Copyright 2012 Alessandro Ghedini.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.
=cut
1; # End of Git::Raw::Commit