X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FApp%2FRgit%2FRepository.pm;h=b8cd5eb7a6204cbcdd86c765db4a20bcb928a68f;hb=9fa7664e0c86c59b5f9a2a03fa499c875722eaf0;hp=ec96328a57882cc5e8f076b2b4ee2444141df69e;hpb=313864be3ae1c0d2120b434ff18150c53f8b352e;p=perl%2Fmodules%2Frgit.git diff --git a/lib/App/Rgit/Repository.pm b/lib/App/Rgit/Repository.pm index ec96328..b8cd5eb 100644 --- a/lib/App/Rgit/Repository.pm +++ b/lib/App/Rgit/Repository.pm @@ -17,11 +17,11 @@ App::Rgit::Repository - Class representing a Git repository. =head1 VERSION -Version 0.03 +Version 0.04 =cut -our $VERSION = '0.03'; +our $VERSION = '0.04'; =head1 DESCRIPTION @@ -110,24 +110,30 @@ sub _abs2rel { $a; } +my %escapes = ( + '^' => sub { '^' }, + 'n' => sub { shift->name }, + 'g' => sub { _abs2rel(shift->repo, shift->root) }, + 'G' => sub { shift->repo }, + 'w' => sub { _abs2rel(shift->work, shift->root) }, + 'W' => sub { shift->work }, + 'b' => sub { + my ($self, $conf) = @_; + _abs2rel($self->bare ? $self->repo : $self->work . '.git', $conf->root) + }, + 'B' => sub { $_[0]->bare ? $_[0]->repo : $_[0]->work . '.git' }, + 'R' => sub { $_[1]->root }, +); +my $e = quotemeta join '', keys %escapes; +$e = "[$e]"; + sub run { my $self = shift; my $conf = shift; return unless $conf->isa('App::Rgit::Config'); my @args = @_; unless ($self->fake) { - my %escapes = ( - '^' => sub { '^' }, - 'n' => sub { $self->name }, - 'g' => sub { _abs2rel($self->repo, $conf->root) }, - 'G' => sub { $self->repo }, - 'w' => sub { _abs2rel($self->work, $conf->root) }, - 'W' => sub { $self->work }, - 'b' => sub { _abs2rel($self->bare ? $self->repo : $self->work . '.git', $conf->root) }, - 'B' => sub { $self->bare ? $self->repo : $self->work . '.git' }, - 'R' => sub { $conf->root }, - ); - s/\^([\^ngGwWbBR])/$escapes{$1}->()/eg for @args; + s/\^($e)/$escapes{$1}->($self, $conf)/eg for @args; } { local $ENV{GIT_DIR} = $self->repo if exists $ENV{GIT_DIR};