| Dist-Zilla documentation | Contained in the Dist-Zilla distribution. |
Dist::Zilla::Plugin::Prereq - (DEPRECATED) the old name of the Prereqs plugin
version 4.200008
This plugin extends [Prereqs] and adds nothing. It is the old name for
Prereqs, and will be removed in a few versions.
Ricardo SIGNES <rjbs@cpan.org>
This software is copyright (c) 2011 by Ricardo SIGNES.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| Dist-Zilla documentation | Contained in the Dist-Zilla distribution. |
package Dist::Zilla::Plugin::Prereq; BEGIN { $Dist::Zilla::Plugin::Prereq::VERSION = '4.200008'; } # ABSTRACT: (DEPRECATED) the old name of the Prereqs plugin use Moose; extends 'Dist::Zilla::Plugin::Prereqs'; before register_component => sub { die "[Prereq] is incompatible with Dist::Zilla >= v5; replace it with [Prereqs] (note the 's')" if Dist::Zilla->VERSION >= 5; warn "!!! [Prereq] will be removed in Dist::Zilla v5; replace it with [Prereqs] (note the 's')\n"; }; no Moose; __PACKAGE__->meta->make_immutable; 1; __END__