Module::Install::Admin - Author-side manager for Module::Install


Module-Install documentation  | view source Contained in the Module-Install distribution.

Index


NAME

Top

Module::Install::Admin - Author-side manager for Module::Install

SYNOPSIS

Top

In a Module::Install extension module:

    sub extension_method {
        my $self = shift;
        $self->admin->some_method(@args);
    }

As an one-liner:

    % perl "-MModule::Install::Admin" -e'&some_method(@args);'

The two snippets above are really shorthands for

    $some_obj->some_method(@args)

where $some_obj is the singleton object of a class under the Module::Install::Admin::* namespace that provides the method some_method. See METHODS for a list of built-in methods.

DESCRIPTION

Top

This module implements the internal mechanism for initializing, including and managing extensions, and should only be of interest to extension developers; it is never included under a distribution's inc/ directory, nor are any of the Module::Install::Admin::* extensions.

For normal usage of Module::Install, please see Module::Install and "COOKBOOK / EXAMPLES" in Module::Install instead.

Bootstrapping

When someone runs a Makefile.PL that has use inc::Module::Install, and there is no inc/ in the current directory, Module::Install will load this module bootstrap itself, through the steps below:

METHODS

Top

SEE ALSO

Top

Module::Install

AUTHORS

Top

Audrey Tang <autrijus@autrijus.org>

COPYRIGHT

Top


Module-Install documentation  | view source Contained in the Module-Install distribution.