Subject: | Please add ABSTRACT and LICENSE to META.(yml|json) |
A detailed explanation gets complicated, http://blogs.perl.org/users/kentnl_kent_fredric/2012/05/ensure-abstract-and-license-fields-in-your-meta.html , but the essence of it is pretty straight forward in code.
WriteMakefile(
+ 'ABSTRACT' => 'Advanced operations on path variables',
+ 'LICENSE' => 'perl',
+ 'ABSTRACT' => 'Advanced operations on path variables',
+ 'LICENSE' => 'perl',
'NAME' => 'Env::Path',
'VERSION_FROM' => 'Path.pm', # finds $VERSION
'EXE_FILES' => [ 'envpath' ],
'PREREQ_PM' => {},
'dist' => {
COMPRESS => 'gzip --force --best',
TAR => 'gtar',
TARFLAGS => '--mode=u+w -cvf',
},
);
Its not very important, but it would be nice to see in a future release.
Thanks =)