JSORB::Dispatcher::Catalyst - A dispatcher for use with Catalyst


JSORB documentation Contained in the JSORB distribution.

Index


Code Index:

NAME

Top

JSORB::Dispatcher::Catalyst - A dispatcher for use with Catalyst

DESCRIPTION

Top

All this basically does it apply the JSORB::Dispatcher::Traits::WithContext to JSORB::Dispatcher::Path and tell it to use the Catalyst context class.

BUGS

Top

All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT.

AUTHOR

Top

Stevan Little <stevan.little@iinteractive.com>

COPYRIGHT AND LICENSE

Top


JSORB documentation Contained in the JSORB distribution.

package JSORB::Dispatcher::Catalyst;
use Moose;
use Moose::Util::TypeConstraints;

our $VERSION   = '0.04';
our $AUTHORITY = 'cpan:STEVAN';

class_type 'Catalyst' unless find_type_constraint('Catalyst');

extends 'JSORB::Dispatcher::Path';
   with 'JSORB::Dispatcher::Traits::WithContext';

has '+context_class' => (default => 'Catalyst');

__PACKAGE__->meta->make_immutable;

no Moose; no Moose::Util::TypeConstraints; 1;

__END__