]> Dogcows Code - chaz/p5-DBIx-Class-ResultSet-RecursiveUpdate/blob - Makefile.PL
Fixed test library
[chaz/p5-DBIx-Class-ResultSet-RecursiveUpdate] / Makefile.PL
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6 NAME => 'DBIx::Class::ResultSet::RecursiveUpdate',
7 AUTHOR => 'Zbigniew Lukasiak <zby@cpan.org>',
8 VERSION_FROM => 'lib/DBIx/Class/ResultSet/RecursiveUpdate.pm',
9 ABSTRACT_FROM => 'lib/DBIx/Class/ResultSet/RecursiveUpdate.pm',
10 PL_FILES => {},
11 PREREQ_PM => {
12 'Test::More' => 0,
13 'version' => 0,
14 'DBIx::Class' => '0.08100',
15 'DBIx::Class::IntrospectableM2M' => 0,
16 'SQL::Translator' => '0.08',
17 'DateTime' => 0,
18 'DBD::SQLite' => '1.21',
19 },
20 dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
21 clean => { FILES => 'DBIx-Class-ResultSet-RecursiveUpdate-*' },
22 LICENSE => 'perl'
23 );
24
This page took 0.038488 seconds and 5 git commands to generate.