gitpan-cpan-distribution: CatalystX-REPL gitpan-cpan-version: 0.04 gitpan-cpan-path: FLORA/CatalystX-REPL-0.04.tar.gz gitpan-cpan-author: FLORA gitpan-cpan-maturity: released
21 lines
603 B
Perl
21 lines
603 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.800006',
|
|
"Carp::REPL" => '0',
|
|
},
|
|
);
|