Dist::Zilla::Plugin::Prereq - (DEPRECATED) the old name of the Prereqs plugin


Dist-Zilla documentation Contained in the Dist-Zilla distribution.

Index


Code Index:

NAME

Top

Dist::Zilla::Plugin::Prereq - (DEPRECATED) the old name of the Prereqs plugin

VERSION

Top

version 4.200008

SYNOPSIS

Top

This plugin extends [Prereqs] and adds nothing. It is the old name for Prereqs, and will be removed in a few versions.

AUTHOR

Top

Ricardo SIGNES <rjbs@cpan.org>

COPYRIGHT AND LICENSE

Top


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__