This is an automated email from the git hooks/post-receive script. abe pushed a commit to annotated tag 2.001001 in repository libdist-zilla-plugin-test-podspelling-perl.
commit 05c541b2fe857c31dcb7bb8571c61179b8de92d6 Author: Marcel Gruenauer <[email protected]> Date: Wed Mar 10 23:20:15 2010 +0100 initial commit --- .gitignore | 1 + Changes | 4 +++ dist.ini | 6 ++++ lib/Dist/Zilla/Plugin/PodSpellingTests.pm | 48 +++++++++++++++++++++++++++++++ weaver.ini | 1 + 5 files changed, 60 insertions(+) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9b77d50 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +Dist-Zilla-Plugin-PodSpellingTests-* diff --git a/Changes b/Changes new file mode 100644 index 0000000..b1eea5b --- /dev/null +++ b/Changes @@ -0,0 +1,4 @@ +Revision history for Perl extension {{$dist->name}} + +{{$NEXT}} + - original version diff --git a/dist.ini b/dist.ini new file mode 100644 index 0000000..b235243 --- /dev/null +++ b/dist.ini @@ -0,0 +1,6 @@ +name = Dist-Zilla-Plugin-PodSpellingTests +author = Marcel Gruenauer <[email protected]> +license = Perl_5 +copyright_holder = Marcel Gruenauer + +[@MARCEL] diff --git a/lib/Dist/Zilla/Plugin/PodSpellingTests.pm b/lib/Dist/Zilla/Plugin/PodSpellingTests.pm new file mode 100644 index 0000000..fe20f70 --- /dev/null +++ b/lib/Dist/Zilla/Plugin/PodSpellingTests.pm @@ -0,0 +1,48 @@ +use 5.008; +use strict; +use warnings; + +package Dist::Zilla::Plugin::PodSpellingTests; +# ABSTRACT: release tests for POD spelling +use Moose; +use Pod::Wordlist::hanekomu; +use Test::Spelling; +extends 'Dist::Zilla::Plugin::InlineFiles'; + +__PACKAGE__->meta->make_immutable; +no Moose; +1; + +=pod + +=head1 SYNOPSIS + +In C<dist.ini>: + + [PodSpellingTests] + +=head1 DESCRIPTION + +This is an extension of L<Dist::Zilla::Plugin::InlineFiles>, providing the +following files + + xt/release/pod-spell.t - a standard Test::Spelling test + +=cut + +__DATA__ +___[ xt/release/pod-spell.t ]___ +#!perl + +use Test::More; + +eval "use Pod::Wordlist::hanekomu"; +plan skip_all => "Pod::Wordlist:hanekomu required for testing POD spelling" + if $@; + +eval "use Test::Spelling"; +plan skip_all => "Test::Spelling required for testing POD spelling" + if $@; + +all_pod_files_spelling_ok('lib'); + diff --git a/weaver.ini b/weaver.ini new file mode 100644 index 0000000..6a0f1d1 --- /dev/null +++ b/weaver.ini @@ -0,0 +1 @@ +[@MARCEL] -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libdist-zilla-plugin-test-podspelling-perl.git _______________________________________________ Pkg-perl-cvs-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits
