package Git::Class::Role::Init; use Any::Moose '::Role'; with 'Git::Class::Role::Execute'; requires 'git'; sub init { my $self = shift; # my ($options, @args) = $self->_get_options(@_); $self->git( init => @_ ); } 1; __END__ =head1 NAME Git::Class::Role::Init =head1 DESCRIPTION This is a role that does C. See L for details. =head1 METHOD =head2 init =head1 AUTHOR Kenichi Ishigaki, Eishigaki@cpan.orgE =head1 COPYRIGHT AND LICENSE Copyright (C) 2009 by Kenichi Ishigaki. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut