File Coverage

blib/lib/Module/Release/PAUSE.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1 1     1   1648 use v5.16;
  1         4  
2              
3             package Module::Release::PAUSE;
4              
5 1     1   8 use strict;
  1         3  
  1         21  
6 1     1   5 use warnings;
  1         3  
  1         25  
7 1     1   5 use Exporter qw(import);
  1         2  
  1         47  
8              
9 1     1   8 use Carp qw(croak);
  1         2  
  1         105  
10              
11             our @EXPORT = qw();
12              
13             our $VERSION = '2.128';
14              
15             =encoding utf8
16              
17             =head1 NAME
18              
19             Module::Release::PAUSE - Interact with the Perl Authors Upload Server (PAUSE)
20              
21             =head1 SYNOPSIS
22              
23             =head1 DESCRIPTION
24              
25             The release script automatically loads this module if it thinks that you
26             want to upload to PAUSE by noticing the C configuration
27             directive.
28              
29             There's nothing here yet.
30              
31             =head1 SEE ALSO
32              
33             L
34              
35             =head1 SOURCE AVAILABILITY
36              
37             This source is in GitHub:
38              
39             https://github.com/briandfoy/module-release
40              
41             =head1 AUTHOR
42              
43             brian d foy, C<< >>
44              
45             =head1 COPYRIGHT AND LICENSE
46              
47             Copyright © 2007-2021, brian d foy C<< >>. All rights reserved.
48              
49             This program is free software; you can redistribute it and/or modify
50             it under the Artistic License 2.0.
51              
52             =cut
53              
54             1;