Module::New::Recipe::Manifest - update MANIFEST


Module-New documentation Contained in the Module-New distribution.

Index


Code Index:

NAME

Top

Module::New::Recipe::Manifest - update MANIFEST

USAGE

Top

From the shell/command line:

module_new manifest

updates MANIFEST.

OPTIONS

Top

edit

If set to true, you can edit the updated MANIFEST.

force

If set to true, MANIFEST will be removed at first (to remove unwanted/missing entries).

AUTHOR

Top

Kenichi Ishigaki, <ishigaki@cpan.org>

COPYRIGHT AND LICENSE

Top


Module-New documentation Contained in the Module-New distribution.

package Module::New::Recipe::Manifest;

use strict;
use warnings;
use Module::New::Recipe;
use Module::New::Command::Basic;

available_options (qw( edit|e ));

flow {
  guess_root;

  create_manifest;

  edit_mainfile optional => 1, file => 'MANIFEST';
};

1;

__END__