|  |  
 |   |   
 NAMEModule::Build::Pluggable::CPANfile - Include cpanfile SYNOPSIS  # cpanfile
  requires 'Plack', 0.9;
  on test => sub {
      requires 'Test::Warn';
  };
  
  # Build.PL
  use Module::Build::Pluggable (
      'CPANfile'
  );
  
  my $builder = Module::Build::Pluggable->new(
        ... # normal M::B args. but not required prereqs
  );
  $builder->create_build_script();
DESCRIPTIONModule::Build::Pluggable::CPANfile is plugin for Module::Build::Pluggable to include dependencies from cpanfile into meta files. This modules is Module::Install::CPANfile for Module::Build THIS IS A DEVELOPMENT RELEASE. API MAY CHANGE WITHOUT NOTICE. AUTHORMasahiro Nagano <kazeburo@gmail.com> SEE ALSOModule::Install::CPANfile, cpanfile, Module::Build::Pluggable LICENSECopyright (C) Masahiro Nagano This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. 
 
 |