CGI-Application-Plugin-REST

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

CGI-Application-Plugin-REST

If you use the CGI::Application framework, this plugin will help you create a 
RESTful (that's the common term for "using REST") architecture by abstracting 
out a lot of the busy work needed to make it happen.

INSTALLATION

If you have the Module::Signature module installed, you can verify the
integrity of this distribution by typing:

    cpansign -v

Module::Signature requires GnuPG which you can get from: 
http://www.gnupg.org/download/

lib/CGI/Application/Plugin/REST.pm  view on Meta::CPAN


        # show the entire list of widgets.
   }

   1;

=head1 ABSTRACT

If you use the L<CGI::Application|CGI::Application> framework, this plugin will help you create
a RESTful (that's the common term for "using REST") architecture by
abstracting out a lot of the busy work needed to make it happen.

=cut

package CGI::Application::Plugin::REST;

use warnings;
use strict;
use Carp qw( croak );
use English qw/ -no_match_vars /;
use REST::Utils qw/ media_type request_method /;



( run in 0.272 second using v1.01-cache-2.11-cpan-87723dcf8b7 )