+++ /dev/null
-steps = FindVersion, ChangeVersion, CheckChangeLog, CheckVersionsMatch, DistTest, Commit, Tag, MakeDist, DistClean
-
-git.tagpattern = %v
-git.push_to = origin
-
-CheckChangeLog.files = ChangeLog
+++ /dev/null
-# Avoid version control files.
-^RCS
-^CVS
-,v$
-\.svn.*
-^\.hg
-^\.git
-
-# Avoid Makemaker generated and utility files.
-^Makefile$
-^blib
-^MakeMaker-\d
-^pm_to_blib$
-^blibdirs$
-^MANIFEST\.SKIP$
-
-# Avoid Module::Build generated and utility files.
-\bBuild$
-\bBuild.bat$
-\b_build
-\bBuild.COM$
-\bBUILD.COM$
-\bbuild.com$
-
-# Avoid temp and backup files.
-~$
-\.old$
-\.bak$
-\#$
-^\.#
-\.rej$
-\.orig$
-
-# Avoid Devel::Cover generated files
-^cover_db
-
-# kwalitee.t junk
-^Debian_CPANTS\.txt
-
-# Avoid tarballs
-\.(?:tar|tgz|tar\.gz)$
-
-^MooseX-Params-Validate-
-
-# No need to ship this
-\.shipit
+++ /dev/null
-use strict;
-use warnings;
-use inc::Module::Install 0.91;
-
-name 'MooseX-Params-Validate';
-all_from 'lib/MooseX/Params/Validate.pm';
-
-
-requires 'Carp' => '0';
-requires 'Devel::Caller' => '0';
-requires 'Moose' => '0.58';
-requires 'Params::Validate' => '0.88';
-requires 'Scalar::Util' => '0';
-requires 'Sub::Exporter' => '0';
-
-build_requires 'Test::Fatal' => '0.001';
-build_requires 'Test::More' => '0.88';
-
-license 'Perl';
-
-resources repository => 'git://git.moose.perl.org/MooseX-Params-Validate.git';
-
-WriteAll();
+++ /dev/null
-MooseX::Params::Validate version 0.13
-===========================
-
-See the individual module documentation for more information
-
-INSTALLATION
-
-To install this module type the following:
-
- perl Makefile.PL
- make
- make test
- make install
-
-DEPENDENCIES
-
-This module requires these other modules and libraries:
-
- Moose
- Params::Validate
-
-COPYRIGHT AND LICENCE
-
-Copyright (C) 2007-2008 Infinity Interactive, Inc.
-
-http://www.iinteractive.com
-
-This library is free software; you can redistribute it and/or modify
-it under the same terms as Perl itself.
-
--- /dev/null
+name = MooseX-Params-Validate
+version = 0.14
+author = Stevan Little <stevan.little@iinteractive.com>
+license = Perl_5
+copyright_holder = Stevan Little <stevan.little@iinteractive.com>
+
+[@Basic]
+
+[PkgVersion]
+
+[InstallGuide]
+[MetaJSON]
+
+[MetaResources]
+bugtracker.web = http://rt.cpan.org/NoAuth/Bugs.html?Dist=MooseX::Params::Validate
+bugtracker.mailto = bug-datetime@rt.cpan.org
+repository.url = git://git.moose.perl.org/MooseX-Params-Validate.git
+repository.web = http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo/MooseX-Params-Validate.git
+repository.type = git
+
+[PodSyntaxTests]
+[NoTabsTests]
+[EOLTests]
+[Signature]
+
+[CheckChangeLog]
+
+[Prereqs]
+Carp = 0
+Devel::Caller = 0
+Moose = 0.58
+Params::Validate = 0.88
+Scalar::Util = 0
+Sub::Exporter = 0
+
+[Prereqs / TestRequires]
+Test::Fatal = 0.001
+Test::More = 0.88
+
+[@Git]
1;
+# ABSTRACT: an extension of Params::Validate using Moose's types
+
__END__
=pod
-=head1 NAME
-
-MooseX::Params::Validate - an extension of Params::Validate for using Moose's types
-
=head1 SYNOPSIS
package Foo;
=back
-=head1 BUGS
-
-All complex software has bugs lurking in it, and this module is no
-exception. If you find a bug please either email me, or add the bug to
-cpan-RT.
-
=head1 AUTHORS
Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
Dave Rolsky E<lt>autarch@urth.orgE<gt>
-=head1 COPYRIGHT AND LICENSE
-
-Copyright 2007-2009 by Infinity Interactive, Inc.
-
-L<http://www.iinteractive.com>
+=head1 BUGS
-This library is free software; you can redistribute it and/or modify
-it under the same terms as Perl itself.
+Please submit bugs to the CPAN RT system at
+http://rt.cpan.org/NoAuth/ReportBug.html?Queue=moosex-params-validate or via
+email at bug-moosex-params-validate@rt.cpan.org.
=cut
+++ /dev/null
-use strict;
-use warnings;
-
-use Test::More;
-
-eval { require Test::Kwalitee; Test::Kwalitee->import() };
-plan skip_all => "Test::Kwalitee needed for testing kwalitee"
- if $@;
+++ /dev/null
-use strict;
-use warnings;
-
-use Test::More;
-
-eval "use Test::Pod 1.14";
-plan skip_all => "Test::Pod 1.14 required for testing POD" if $@;
-
-all_pod_files_ok();