]> git.vpit.fr Git - perl/modules/rgit.git/blobdiff - lib/App/Rgit/Command.pm
Switch qw delimiters to <>
[perl/modules/rgit.git] / lib / App / Rgit / Command.pm
index b4d78dd4984270f922a9b080b3c6963455651a40..8761da38dbfb553b7c46bba8ba27256573db2eef 100644 (file)
@@ -5,7 +5,7 @@ use warnings;
 
 use Carp ();
 
-use App::Rgit::Utils qw/:codes/;
+use App::Rgit::Utils qw<:codes>;
 
 =head1 NAME
 
@@ -39,7 +39,7 @@ Creates a new command object for C<$cmd> that is bound to be called with argumen
 =cut
 
 my %commands;
-__PACKAGE__->action($_ => 'Once') for qw/daemon gui help init version/, ' ';
+__PACKAGE__->action($_ => 'Once') for qw<daemon gui help init version>, ' ';
 
 sub new {
  my $class = shift;
@@ -120,7 +120,7 @@ Read-only accessors.
 =cut
 
 BEGIN {
- eval "sub $_ { \$_[0]->{$_} }" for qw/cmd args policy/;
+ eval "sub $_ { \$_[0]->{$_} }" for qw<cmd args policy>;
 }
 
 =head2 C<run>