SweetPea-Application
DESCRIPTION
SweetPea::Application is a full-stack web application framework built atop of the SweetPea web framework. SweetPea::Application aims to provide all the functionality common to building complete and robust web pplications via a suite of packages through a unified API.
"I must be an aligator as much as I scale...." -sweetpea
FEATURES
Full Stack Features:
INSTALLATION
To install this module, run the following commands:
perl Makefile.PL
make
make test
make install
SYNOPSIS
use SweetPea;
sweet->routes({
'/' => sub {
shift->forward('/way');
},
'/way' => sub {
shift->html('I am the way the truth and the light!');
}
})->run;
SUPPORT AND DOCUMENTATION
After installing, you can find documentation for this module with the perldoc command.
perldoc SweetPea::Application
You can also look for information at:
RT, CPAN's request tracker
http://rt.cpan.org/NoAuth/Bugs.html?Dist=SweetPea-Application
AnnoCPAN, Annotated CPAN documentation
http://annocpan.org/dist/SweetPea-Application
CPAN Ratings
http://cpanratings.perl.org/d/SweetPea-Application
Search CPAN
http://search.cpan.org/dist/SweetPea-Application/
COPYRIGHT AND LICENCE
Copyright (C) 2009 Al Newkirk
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.