Git::Class::Role::Config - Git::Class::Role::Config documentation


Git-Class documentation Contained in the Git-Class distribution.

Index


Code Index:

NAME

Top

Git::Class::Role::Config

DESCRIPTION

Top

This is a role that does git config .... See http://www.kernel.org/pub/software/scm/git-core/docs/git-config.html for details.

METHODS

Top

config

AUTHOR

Top

Kenichi Ishigaki, <ishigaki@cpan.org>

COPYRIGHT AND LICENSE

Top


Git-Class documentation Contained in the Git-Class distribution.

package Git::Class::Role::Config;

use Any::Moose '::Role'; with 'Git::Class::Role::Execute';
requires 'git';

sub config {
  my $self = shift;

  # my ($options, @args) = $self->_get_options(@_);

  $self->git( config => @_ );
}

1;

__END__