| JSORB documentation | Contained in the JSORB distribution. |
JSORB::Dispatcher::Catalyst - A dispatcher for use with Catalyst
All this basically does it apply the JSORB::Dispatcher::Traits::WithContext to JSORB::Dispatcher::Path and tell it to use the Catalyst context class.
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.
Stevan Little <stevan.little@iinteractive.com>
Copyright 2008-2010 Infinity Interactive, Inc.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| 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__