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

NAME

Path::Router::Shell - An interactive shell for testing router configurations

SYNOPSIS

  #!/usr/bin/perl
  
  use strict;
  use warnings;
  
  use My::App::Router;
  use Path::Router::Shell;
  
  Path::Router::Shell->new(router => My::App::Router->new)->shell;

DESCRIPTION

This is a tool for helping test the routing in your applications, so you simply write a small script like showing in the SYNOPSIS and then you can use it to test new routes or debug routing issues, etc etc etc.

METHODS

new (router = $router)>
router
shell
meta

BUGS

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

Stevan Little <stevan.little@iinteractive.com>

COPYRIGHT AND LICENSE

Copyright 2008-2009 Infinity Interactive, Inc.

http://www.iinteractive.com

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