SYNOPSIS

    use Module::Starter qw(
        Module::Starter::Plugin::CGIApp
    );

    Module::Starter->create_distro(%args);

ABSTRACT

This is a plugin for Module::Starter that builds you a skeleton CGI::Application module with all the extra files needed to package it for \s-1CPAN\s0. You can customize the output using HTML::Template.

VERSION

This document describes version 0.41

DESCRIPTION

This module subclasses Module::Starter::Simple and includes functionality similar to Module::Starter::Plugin::Template. This document only describes the methods which are overriden from those modules or are new.

Only developers looking to extend this module need to read this. If you just want to use Module::Starter::Plugin::CGIApp, read the docs for cgiapp-starter or titanium-starter instead.

METHODS

This method calls the \*(C`new\*(C' supermethod from Module::Starter::Plugin::Simple and then initializes the template store. (See \*(C`templates\*(C'.) This method works as advertised in Module::Starter.

create_LICENSE( )

This method creates a \*(C`LICENSE\*(C' file in the distribution's directory which can hold the distribution's license terms.

create_MANIFEST_SKIP( )

This method creates a \*(C`MANIFEST.SKIP\*(C' file in the distribution's directory so that unneeded files can be skipped from inclusion in the distribution. This method will create a starter module file for each module named in @modules. It is only subclassed from Module::Starter::Simple here so we can change the rtname tmpl_var to be the distro name instead of the module name.

create_perlcriticrc( )

This method creates a \*(C`perlcriticrc\*(C' in the distribution's author test directory so that the behavior of \*(C`perl-critic.t\*(C' can be modified.

create_server_pl( )

This method creates \*(C`server.pl\*(C' in the distribution's root directory. This method creates a bunch of *.t files. @modules is a list of all modules in the distribution.

create_tmpl( )

This method takes all the template files ending in .html (representing HTML::Template's and installs them into a directory under the distro tree. For instance if the distro was called \*(C`Foo-Bar\*(C', the templates would be installed in \*(C`lib/Foo/Bar/templates\*(C'.

Note the files will just be copied over not rendered. This method creates a bunch of *.t files for author tests. @modules is a list of all modules in the distribution. This method is given an HTML::Template and options and returns the resulting document.

Data in the \*(C`Module::Starter\*(C' object which represents a reference to an array @foo is transformed into an array of hashes with one key called $foo_item in order to make it usable in an HTML::Template \*(C`TMPL_LOOP\*(C'. For example:

$data = ['a'. 'b', 'c'];

would become:

$data = [ { data_item => 'a' }, { data_item => 'b' }, { data_item => 'c' }, ];

so that in the template you could say:

<tmpl_loop data> <tmpl_var data_item> </tmpl_loop>

templates ( )

This method reads in the template files and populates the object's templates attribute. The module template directory is found by checking the \*(C`MODULE_TEMPLATE_DIR\*(C' environment variable and then the config option \*(C`template_dir\*(C'. This method is called by create_Build_PL and returns text used to populate Build.PL when the builder is Module::Build; $main_pm_file is the filename of the distribution's main module, $main_module.

Changes_guts

Implements the creation of a \*(C`Changes\*(C' file.

LICENSE_guts

Implements the creation of a \*(C`LICENSE\*(C' file. This method is called by create_Makefile_PL and returns text used to populate Makefile.PL when the builder is ExtUtils::MakeMaker; $main_pm_file is the filename of the distribution's main module, $main_module.

MANIFEST_SKIP_guts

Implements the creation of a \*(C`MANIFEST.SKIP\*(C' file. This method is called by create_MI_Makefile_PL and returns text used to populate Makefile.PL when the builder is Module::Install; $main_pm_file is the filename of the distribution's main module, $main_module. Implements the creation of a \*(C`README\*(C' file.

README_guts($build_instructions)

Implements the creation of a \*(C`README\*(C' file.

perlcriticrc_guts

Implements the creation of a \*(C`perlcriticrc\*(C' file.

server_pl_guts

Implements the creation of a \*(C`server.pl\*(C' file.

t_guts(@modules)

Implements the creation of test files. @modules is a list of all the modules in the distribution.

tmpl_guts

Implements the creation of template files.

xt_guts(@modules)

Implements the creation of test files for author tests. @modules is a list of all the modules in the distribution.

BUGS

Please report any bugs or feature requests to \*(C`bug-module-starter-plugin-cgiapp at rt.cpan.org\*(C', or through the web interface at rt.cpan.org <http://rt.cpan.org>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

AUTHOR

Jaldhar H. Vyas, <jaldhar at braincells.com>

COPYRIGHT

Copyright (C) 2012, Consolidated Braincells Inc. All Rights Reserved.

This distribution is free software; you can redistribute it and/or modify it under the terms of either:

a) the \s-1GNU\s0 General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version, or

b) the Artistic License version 1.0 or a later version.

The full text of the license can be found in the \s-1LICENSE\s0 file included with this distribution.

RELATED TO Module::Starter::Plugin::CGIApp…

cgiapp-starter, titanium-starter, Module::Starter, Module::Starter::Simple, Module::Starter::Plugin::Template. CGI::Application, Titanium, HTML::Template