[BACK]Return to Build.PL CVS log [TXT][DIR] Up to [local] / todotxt / Text-Todo-REST-API

Diff for /todotxt/Text-Todo-REST-API/Build.PL between version 1.4 and 1.10

version 1.4, 2010/01/17 21:09:39 version 1.10, 2010/02/14 06:14:57
Line 2 
Line 2 
 use warnings;  use warnings;
 use Module::Build;  use Module::Build;
   
 # $AFresh1: Build.PL,v 1.3 2010/01/17 20:18:16 andrew Exp $  # $AFresh1: Build.PL,v 1.9 2010/01/31 04:24:55 andrew Exp $
   
 my $builder = Module::Build->new(  my $builder = Module::Build->new(
     module_name          => 'Text::Todo::REST::API',      module_name          => 'Text::Todo::REST::API',
Line 11 
Line 11 
     dist_version_from    => 'lib/Text/Todo/REST/API.pm',      dist_version_from    => 'lib/Text/Todo/REST/API.pm',
     recursive_test_files => 1,      recursive_test_files => 1,
     requires             => {      requires             => {
           'Carp'              => 0,
         'Class::Std::Utils' => 0,          'Class::Std::Utils' => 0,
         'Digest::MD5'       => 0,          'Digest::MD5'       => 0,
         'File::Spec'        => 0,          'File::Spec'        => 0,
         'Text::Todo'        => 0,          'Text::Todo'        => 0.2,
         'Test::More'        => 0,          'Test::More'        => 0,
         'version'           => 0,          'version'           => 0,
     },      },
     add_to_cleanup => ['Text-Todo-REST-API-*'],      build_requires     => {
           'Test::JSON'        => 0,
           'Test::More'        => 0.82,
       },
       add_to_cleanup     => [
           'Text-Todo-REST-API-*',
           'MANIFEST',
           'META.yml',
           'Makefile.PL',
           'LICENSE',
           'README',
       ],
       create_makefile_pl => 'traditional',
       create_license     => 1,
       create_readme      => 1,
 );  );
   
 $builder->create_build_script();  $builder->create_build_script();

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.10

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>