#;

open my $pod_fh, '>', curfile->dirname->child( qw/.. lib Module Znuny CoreList.pod/ )->to_string;
print $pod_fh qq~# PODNAME: Module::Znuny::CoreList

~;

print $pod_fh q~=head1 SYNOPSIS

use Module::Znuny::CoreList;

my @znuny_versions = Module::Znuny::CoreList->shipped(
   '6.0.x',
   'Kernel::System::DB',
);

# returns (6.0.31, 6.0.32, ...)

my @modules = Module::Znuny::CoreList->modules( '6.0.32' );
my @modules = Module::Znuny::CoreList->modules( '6.1.x' );

# methods to check for CPAN modules shipped with Znuny

my @cpan_modules = Module::Znuny::CoreList->cpan_modules( '6.0.x' );

my @znuny_versions = Module::Znuny::CoreList->shipped(
   '6.0.x',
   'CGI',
);

~;

print $pod_fh qq~ =head1 AUTHOR

$dist_author

COPYRIGHT AND LICENSE

$dist_copyright ~;

}