App-Chronicle

 view release on metacpan or  search on metacpan

lib/Chronicle/Plugin/PostBuild.pm  view on Meta::CPAN


our $VERSION = "5.1.7";


=head2 on_generate

The C<on_generate> method is automatically invoked to generate output
pages.  This particular plugin method is invoked I<after> any
C<on_initiate> methods which might be present.

This method merely looks for defined post-build commands, and if any
are encountered they are executed via C<system>.

=cut

sub on_generate
{
    my ( $self, %args ) = (@_);

    my $dbh    = $args{ 'dbh' };
    my $config = $args{ 'config' };

lib/Chronicle/Plugin/PreBuild.pm  view on Meta::CPAN



our $VERSION = "5.1.7";


=head2 on_initiate

The C<on_initiate> method is automatically invoked just before any
C<on_generate> methods which might be present.

This method merely looks for defined pre-build commands, and if any
are encountered they are executed via C<system>.

=cut

sub on_initiate
{
    my ( $self, %args ) = (@_);

    my $dbh    = $args{ 'dbh' };
    my $config = $args{ 'config' };



( run in 0.344 second using v1.01-cache-2.11-cpan-64827b87656 )