The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
|
my $explanation = q<
This is the component of Module::Package::RDF which gets
bundled with the distribution.
> ;
use 5.005;
BEGIN {
$Module::Package::Dist::RDF::AUTHORITY = 'cpan:TOBYINK' ;
$Module::Package::Dist::RDF::VERSION = '0.008' ;
@Module::Package::Dist::RDF::ISA = 'Module::Package::Dist' ;
}
sub _main
{
my ( $self ) = @_ ;
$self ->mi->trust_meta_yml;
$self ->mi->auto_install;
}
{
use 5.005;
BEGIN {
$Module::Package::Dist::RDF::standard::AUTHORITY = 'cpan:TOBYINK' ;
$Module::Package::Dist::RDF::standard::VERSION = '0.008' ;
@Module::Package::Dist::RDF::standard::ISA = 'Module::Package::Dist::RDF' ;
}
}
1;
|