switch to my pluginbundle
Karen Etheridge [Tue, 17 Sep 2013 00:51:31 +0000 (17:51 -0700)]
.mailmap [new file with mode: 0644]
Changes
LICENSE [new file with mode: 0644]
README.md [new file with mode: 0644]
dist.ini
lib/MooseX/AlwaysCoerce.pm
t/pod.t [deleted file]

diff --git a/.mailmap b/.mailmap
new file mode 100644 (file)
index 0000000..a661a65
--- /dev/null
+++ b/.mailmap
@@ -0,0 +1,2 @@
+# https://www.kernel.org/pub/software/scm/git/docs/git-shortlog.html
+Karen Etheridge <ether@cpan.org> <karen@etheridge.ca>
diff --git a/Changes b/Changes
index 8724b81..4eef7c7 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,8 +1,6 @@
 Revision history for {{$dist->name}}
 
 {{$NEXT}}
-    - fixed reference to writable git repository
-    - pod coverage tests added
     - warnings tests bypassed during installation
 
 0.18      2012-10-13 16:57:07 PDT-0700 (Karen Etheridge)
diff --git a/LICENSE b/LICENSE
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/README.md b/README.md
new file mode 100644 (file)
index 0000000..e69de29
index 456f621..3339c0e 100644 (file)
--- a/dist.ini
+++ b/dist.ini
@@ -1,90 +1,18 @@
 name        = MooseX-AlwaysCoerce
 author      = Rafael Kitover <rkitover@cpan.org>
-author      = Michael G. Schwern <mschwern@cpan.org>
-author      = Karen Etheridge <ether@cpan.org>
+copyright_holder = Rafael Kitover <rkitover@cpan.org>
+copyright_year = 2009
 abstract    = Automatically enable coercions for Moose attributes
 license     = Perl_5
 
-; version is taken from the last git tag, plus 1.
-; override with the V environment variable.
-[Git::NextVersion]
-
-[MetaResources]
-bugtracker.web    = http://rt.cpan.org/NoAuth/Bugs.html?Dist=MooseX-AlwaysCoerce
-repository.url    = git://git.moose.perl.org/MooseX-AlwaysCoerce.git
-; r/w repository: gitmo@git.moose.perl.org:MooseX-AlwaysCoerce.git
-repository.web    = http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo/MooseX-AlwaysCoerce.git;a=summary
-repository.type   = git
-
-[@Filter]
--bundle = @Basic
--remove = GatherDir
-
-[Git::GatherDir]
-
-[AutoPrereqs]
-skip = ^MyRole$
+[@Author::ETHER]
+:version = 0.019
+server = gitmo
+Authority.authority = cpan:RKITOVER
+AutoPrereqs.skip = ^MyRole$
+-remove = PodWeaver
 
 [Prereqs / RuntimeRequires]
 Package::Stash = 0.26
 
-[InstallGuide]
-[MetaConfig]
-[MetaProvides::Package]
-[MetaJSON]
-[Git::Describe]
-[PkgVersion]
-[MinimumPerl]
-
-[NoTabsTests]
-[EOLTests]
-[PodSyntaxTests]
-[PodCoverageTests]
-[Test::Pod::LinkCheck]
-[Test::Pod::No404s]
-
-[Test::Compile]
-[CheckPrereqsIndexed]
-[Test::MinimumVersion]
-[MetaTests]
-[Test::CPAN::Changes]
-[Test::Version]
-[Test::ChangesHasContent]
-
-[Test::CheckDeps]
-:version = 0.005
-fatal = 1
-
-[Git::Remote::Check]
-remote_branch = master
-
-[Git::Check]
-:version = 1.22460
-allow_dirty =
-
-[Git::CheckFor::CorrectBranch]
-:version = 0.004
-release_branch = master
-release_branch = stable
-
-; TODO: requires fixes for calculating last version
-; [Git::CheckFor::Fixups]
-
-[NextRelease]
-:version = 4.300018
-format = %-8V  %{yyyy-MM-dd HH:mm:ss ZZZZ}d (%U)
-
-[Git::Commit]
-allow_dirty = Changes
-commit_msg = %N-%v%t%n%n%c
-
-[Git::Tag]
-tag_format = v%v%t
-tag_message = v%v%t
-
-[Git::Push]
-
-[InstallRelease]
-install_command = cpanm .
-
-[Clean]
+[ContributorsFromGit]
index 620812c..b86935d 100644 (file)
@@ -12,18 +12,12 @@ use Carp;
 
 Moose::Exporter->setup_import_methods;
 
+=pod
+
 =head1 NAME
 
 MooseX::AlwaysCoerce - Automatically enable coercions for Moose attributes
 
-=head1 VERSION
-
-Version 0.16
-
-=cut
-
-our $VERSION = '0.16';
-
 =head1 SYNOPSIS
 
     package MyClass;
diff --git a/t/pod.t b/t/pod.t
deleted file mode 100644 (file)
index ee8b18a..0000000
--- a/t/pod.t
+++ /dev/null
@@ -1,12 +0,0 @@
-#!perl -T
-
-use strict;
-use warnings;
-use Test::More;
-
-# Ensure a recent version of Test::Pod
-my $min_tp = 1.22;
-eval "use Test::Pod $min_tp";
-plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;
-
-all_pod_files_ok();