Dist-Zilla-MintingProfile-AlienBuild
view release on metacpan or search on metacpan
lib/Alien/Build/Wizard/Detect.pm view on Meta::CPAN
has tarball => (
is => 'ro',
lazy => 1,
isa => 'ScalarRef[Str]',
init_arg => undef,
default => sub ($self) {
my $ua = $self->ua;
my $res = $ua->get($self->uri);
die $res->status_line
unless $res->is_success;
defined $res->decoded_content
? \$res->decoded_content
: \$res->content;
},
);
has file_list => (
is => 'ro',
isa => 'ArrayRef[Path::Tiny]',
lazy => 1,
init_arg => undef,
default => sub ($self) {
( run in 0.472 second using v1.01-cache-2.11-cpan-a9ef4e587e4 )