Files
CatalystX-REPL/Makefile.PL
Dinis 8107ad7fd0 Fix the Catalyst dependency version
The version of the Catalyst pre-requisite module has an extra 0 which causes some build tools to fail the test and don't find a version higher than the "required". I'm aware this is a read-only repo but it's the easiest way to submit the fix.
2015-04-11 02:01:49 +01:00

21 lines
602 B
Perl

use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
DISTNAME => 'CatalystX-REPL',
NAME => 'CatalystX::REPL',
AUTHOR => 'Tomas\ Doran\ \<bobtfish\@bobtfish\.net\>\,\ Florian\ Ragwitz\ \<rafl\@debian\.org\>\,\ Ash\ Berlin\ \<ash\@cpan\.org\>',
ABSTRACT => 'read\-eval\-print\-loop\ for\ debugging\ your\ Catalyst\ application',
VERSION => '0.04',
EXE_FILES => [ qw() ],
(eval { ExtUtils::MakeMaker->VERSION(6.31) } ? (LICENSE => 'perl') : ()),
PREREQ_PM => {
"namespace::autoclean" => '0',
"Catalyst" => '5.80006',
"Carp::REPL" => '0',
},
);