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

NAME

SweetPea::Documentation

DESCRIPTION

SweetPea is the module you would use when you need to develop modern CGI scripts for web-related purposes. SweetPea-Application is better suite for create robust and scalable web applications. SweetPea was designed for Perl novice and experts alike, please see SweetPea::Cli::Documentation for a quick start guide.

SYNOPSIS

Oh how Sweet web application development can be ...

    use SweetPea;
    sweet->routes({
    
        '/' => sub {
            shift->forward('/way');
        },
        
        '/way' => sub {
            shift->html('I am the way the truth and the light!');
        }
        
    })->run;

EXPORTED

    sweet(); # a shortcut to the instantiated SweetPea object

OTHER DOCUMENTATION

PROJECT

SweetPea - A web framework that doesn't get in the way, or suck.

PROJECT DESCRIPTION

SweetPea is a modern web application framework that is fast, scalable, and light-weight. SweetPea has a short learning curve and a common sense object-oriented API. See SweetPea::Cli::Documentation for a QuickStart Guide.

PROJECT POD URL

http://app.alnewkirk.com/pod/projects/sweetpea/

AUTHOR

Al Newkirk, <al.newkirk at awnstudio.com>

BUGS

Please report any bugs or feature requests to bug-SweetPea at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=SweetPea. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc SweetPea

You can also look for information at:

ACKNOWLEDGEMENTS

Al Newkirk <al.newkirk@awnstudio.com>

COPYRIGHT & LICENSE

Copyright 2009 Al Newkirk, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.