in reply to Dist::Zilla::Plugin::PkgVersion vs. Perl::Critic and strictures
so that Dist::Zilla::Plugin::PkgVersion will expand it to:## no critic package My::Package; ## use critic use strict; use warnings;
and everyone is happy :-)## no critic package My::Package; BEGIN { $My::Package::VERSION = '1.23'; } ## use critic use strict; use warnings;
|
---|