The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

CatalystX::Features::Init - Extend MyApp.pm initialization

VERSION

version 0.20

SYNOPSIS

Maybe:

        package MyApp::MyFeature;
        use base qw/CatalystX::Features::Init/;

Or maybe:

        package MyApp::MyFeature;
        use base qw/Catalyst/;

DESCRIPTION

WIP. Work in progress.

This is a placeholder for an upcoming plugin for pre and post setup phases. The idea is to have your feature run code during the application startup phase.

Right now, running before and after setup handlers somewhere within your feature may suffice.

        before 'setup' => sub {
                ...
        };

AUTHORS

        Rodrigo de Oliveira (rodrigolive), C<rodrigolive@gmail.com>

LICENSE

This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself.