Files
CatalystX-REPL/Makefile.PL
Florian Ragwitz c7e0437c70 Import of FLORA/CatalystX-REPL-0.01 from CPAN.
gitpan-cpan-distribution: CatalystX-REPL
gitpan-cpan-version:      0.01
gitpan-cpan-path:         FLORA/CatalystX-REPL-0.01.tar.gz
gitpan-cpan-author:       FLORA
gitpan-cpan-maturity:     released
2014-10-23 17:34:26 -05:00

21 lines
556 B
Perl

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