ExtUtils::ModuleMaker::PBP::Interactive - Hold methods used in F<mmkrpbp>


ExtUtils-ModuleMaker-PBP documentation Contained in the ExtUtils-ModuleMaker-PBP distribution.

Index


Code Index:

NAME

Top

ExtUtils::ModuleMaker::PBP::Interactive - Hold methods used in mmkrpbp

SYNOPSIS

Top

    use ExtUtils::ModuleMaker::PBP::Interactive;

    ...  # ExtUtils::ModuleMaker::new() called here

    $MOD->run_interactive() if $MOD->{INTERACTIVE};

    ...  # ExtUtils::ModuleMaker::complete_build() called here

    $MOD->closing_message();

DESCRIPTION

Top

This package exists solely to hold declarations of variables and methods used in mmkrpbp, the command-line utility which is the easiest way of accessing the functionality of Perl extension ExtUtils::ModuleMaker.

METHODS

Top

run_interactive()

This method drives the menus which make up mmkrpbp's interactive mode. Once it has been run, mmkrpbp calls ExtUtils::ModuleMaker::complete_build() to build the directories and files requested.

closing_message()

Prints a closing message after complete_build() is run. Can be commented out without problem. Could be subclassed, and -- in a future version -- probably will be with an optional printout of files created.

AUTHOR

Top

James E Keenan. CPANID: JKEENAN.

COPYRIGHT

Top

SEE ALSO

Top

ExtUtils::ModuleMaker::PBP, mmkrpbp, ExtUtils::ModuleMaker, modulemaker.


ExtUtils-ModuleMaker-PBP documentation Contained in the ExtUtils-ModuleMaker-PBP distribution.

package ExtUtils::ModuleMaker::PBP::Interactive;
# as of 04-05-2006
use strict;
local $^W = 1;
BEGIN {
    use base qw(
        ExtUtils::ModuleMaker::PBP
        ExtUtils::ModuleMaker::Interactive
        ExtUtils::ModuleMaker
    );
    use vars qw ( $VERSION );
    $VERSION = '0.09';
}
use Carp;
use Data::Dumper;


1;

################### DOCUMENTATION ###################