<package name> - <package abstract>
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!Build/ | |
.last_cover_stats | |
/META.yml | |
/META.json | |
/MYMETA.* | |
*.o | |
*.pm.tdy | |
*.bs | |
MANIFEST |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: perl | |
perl: | |
- "5.18" | |
- "5.16" | |
- "5.14" | |
- "5.12" | |
- "5.10" | |
install: | |
cpanm --quiet --installdeps --notest . && cpanm --quiet --notest Devel::Cover::Report::Coveralls |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
exit 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
#Courtesy of Ovid | |
#Ref: http://use.perl.org/~Ovid/journal/37797 | |
use strict; | |
use warnings; | |
use File::Find; | |
use File::Spec; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Courtesy of Jeffrey Ryan Thalhammer | |
# http://search.cpan.org/~thaljef/Test-Perl-Critic/lib/Test/Perl/Critic.pm | |
use strict; | |
use warnings; | |
use File::Spec; | |
use Test::More; | |
use English qw(-no_match_vars); | |
if ( not $ENV{TEST_CRITIC} ) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use warnings; | |
BEGIN { | |
unless ( $ENV{RELEASE_TESTING} ) { | |
use Test::More; | |
plan( skip_all => 'these tests are for release candidate testing' ); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pod test courtesy of petdance | |
#http://use.perl.org/~petdance/journal/17412 | |
use Test::More; | |
eval "use Test::Pod::Coverage 0.08"; | |
plan skip_all => "Test::Pod::Coverage 0.08 required for testing POD coverage" if $@; | |
all_pod_coverage_ok(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use Test::More; | |
eval "use Test::Pod 1.14"; | |
plan skip_all => 'Test::Pod 1.14 required' if $@; | |
plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD}; | |
all_pod_files_ok(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"build_systems": | |
[ | |
{ | |
"name": "Module::Build", | |
"cmd": ["perl Build.PL --verbose=1 ; ./Build"], | |
"working_dir": "${project_path:${folder}}", | |
"selector": "source.perl", | |
"shell": true, |
OlderNewer