123456789101112131415161718 use strict;use warnings;package E;# ABSTRACT: Fake dist stubuse Moose;use File::ShareDir qw( dist_file );use Path::Tiny qw( path );with 'Dist::Zilla::Role::Plugin';our $content = path( dist_file( 'E', 'example.txt' ) )->slurp;1;
use
strict;
warnings;
package
E;
# ABSTRACT: Fake dist stub
Moose;
File::ShareDir
qw( dist_file )
;
Path::Tiny
qw( path )
with
'Dist::Zilla::Role::Plugin'
our
$content
= path( dist_file(
'E'
,
'example.txt'
) )->slurp;
1;