Hyle
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
use strict;
use warnings;
use ExtUtils::MakeMaker;
my %required_for_test = (
'Plack::Test' => 0,
'Test::More' => 0,
'Test::Exception' => 0,
);
WriteMakefile(
NAME => 'Hyle',
VERSION_FROM => 'lib/Hyle.pm',
PREREQ_PM => {
Plack => 0,
parent => 0,
JSON => 0,
'DBIx::Class' => 0,
'Package::Stash' => 0,
'HTTP::Message' => 0,
'File::Temp' => 0,
DBI => 0,
'DBIx::Class::Schema::Loader' => 0,
'Class::Load' => 0,
'Getopt::Long' => 0,
'Hash::MultiValue' => 0,
'URI::Escape' => 0,
($ExtUtils::MakeMaker::VERSION < 6.64 ? (%required_for_test) : ()),
},
($ExtUtils::MakeMaker::VERSION >= 6.64 ? (TEST_REQUIRES => \%required_for_test) : () ),
($] >= 5.005 ?
(ABSTRACT => "Simple REST endpoint app for db backend build with Plack and DBIC",
AUTHOR => 'Tomasz Czepiel <tjmc@cpan.org>') : ()),
EXE_FILES => [ 'scripts/hyle.pl' ],
LICENSE => "perl",
META_MERGE => {
resources => {
repository => 'git://github.com/tczepiel/perl-app-hyle.git',
},
},
);
( run in 0.526 second using v1.01-cache-2.11-cpan-524268b4103 )