Git::Class::Role::Diff - Git::Class::Role::Diff documentation


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

Index


Code Index:

NAME

Top

Git::Class::Role::Diff

DESCRIPTION

Top

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

METHOD

Top

diff

AUTHOR

Top

Kenichi Ishigaki, <ishigaki@cpan.org>

COPYRIGHT AND LICENSE

Top


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

package Git::Class::Role::Diff;

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

sub diff {
  my $self = shift;

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

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

1;

__END__