| Module-New documentation | Contained in the Module-New distribution. |
Module::New::Recipe::Manifest - update MANIFEST
From the shell/command line:
updates MANIFEST.
If set to true, you can edit the updated MANIFEST.
If set to true, MANIFEST will be removed at first (to remove unwanted/missing entries).
Kenichi Ishigaki, <ishigaki@cpan.org>
Copyright (C) 2007 by Kenichi Ishigaki.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| 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__