Skip to content

Commit

Permalink
add github info, POD tests now dev-only
Browse files Browse the repository at this point in the history
  • Loading branch information
stevieb9 committed Feb 11, 2018
1 parent 824a72e commit d8b93dc
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 4 deletions.
5 changes: 5 additions & 0 deletions Changes
@@ -1,5 +1,10 @@
Revision history for App-CopyrightImage

1.00 2018-02-11
- no functional change
- add Github information to Makefile.PL
- made POD tests developer only

0.04 2016-07-28
- added tests for 'dst' and 'remove'
- updated POD with warnings that 'remove' DOES edit original files
Expand Down
13 changes: 13 additions & 0 deletions Makefile.PL
Expand Up @@ -14,6 +14,19 @@ WriteMakefile(
'bin/imgcopyright'
],
MIN_PERL_VERSION => 5.006,
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
bugtracker => {
web => 'https://github.com/stevieb9/p5-app-copyrightimage/issues',
},
repository => {
type => 'git',
url => 'https://github.com/stevieb9/p5-app-copyrightimage.git',
web => 'https://github.com/stevieb9/p5-app-copyrightimage',
},
},
},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
Expand Down
2 changes: 1 addition & 1 deletion bin/imgcopyright
Expand Up @@ -138,7 +138,7 @@ Steve Bertrand, C<< <steveb at cpan.org> >>
=head1 LICENSE AND COPYRIGHT
Copyright 2016 Steve Bertrand.
Copyright 2016,2017,2018 Steve Bertrand.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
Expand Down
4 changes: 2 additions & 2 deletions lib/App/CopyrightImage.pm
Expand Up @@ -12,7 +12,7 @@ use Image::ExifTool qw(:Public);

our @EXPORT = qw(imgcopyright);

our $VERSION = '0.05';
our $VERSION = '1.00';

sub imgcopyright {
my (%data) = @_;
Expand Down Expand Up @@ -326,7 +326,7 @@ Steve Bertrand, C<< <steveb at cpan.org> >>
=head1 LICENSE AND COPYRIGHT
Copyright 2016 Steve Bertrand.
Copyright 2016,2017,2018 Steve Bertrand.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
Expand Down
6 changes: 5 additions & 1 deletion t/pod-coverage.t
Expand Up @@ -4,7 +4,11 @@ use strict;
use warnings FATAL => 'all';
use Test::More;

# Ensure a recent version of Test::Pod::Coverage
unless ( $ENV{RELEASE_TESTING} ) {
plan( skip_all => "Author tests not required for installation" );
}

# # Ensure a recent version of Test::Pod::Coverage
my $min_tpc = 1.08;
eval "use Test::Pod::Coverage $min_tpc";
plan skip_all => "Test::Pod::Coverage $min_tpc required for testing POD coverage"
Expand Down
4 changes: 4 additions & 0 deletions t/pod.t
Expand Up @@ -4,6 +4,10 @@ use strict;
use warnings FATAL => 'all';
use Test::More;

unless ( $ENV{RELEASE_TESTING} ) {
plan( skip_all => "Author tests not required for installation" );
}

# Ensure a recent version of Test::Pod
my $min_tp = 1.22;
eval "use Test::Pod $min_tp";
Expand Down

0 comments on commit d8b93dc

Please sign in to comment.