| Dist-Zilla documentation | Contained in the Dist-Zilla distribution. |
Dist::Zilla::Plugin::AutoPrereq - (DEPRECATED) the old name for Dist::Zilla::Plugin::AutoPrereqs
version 4.200008
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::AutoPrereq; BEGIN { $Dist::Zilla::Plugin::AutoPrereq::VERSION = '4.200008'; } use Moose; extends 'Dist::Zilla::Plugin::AutoPrereqs'; # ABSTRACT: (DEPRECATED) the old name for Dist::Zilla::Plugin::AutoPrereqs before register_component => sub { die "[AutoPrereq] will be removed in Dist::Zilla v5; replace it with [AutoPrereqs] (note the 's')\n" if Dist::Zilla->VERSION >= 5; warn "!!! [AutoPrereq] will be removed in Dist::Zilla v5; replace it with [AutoPrereqs] (note the 's')\n"; }; no Moose; __PACKAGE__->meta->make_immutable; 1; __END__