| Path-Dispatcher documentation | view source | Contained in the Path-Dispatcher distribution. |
Path::Dispatcher::Rule::Enum - one of a list of strings must match
my $rule = Path::Dispatcher::Rule::Enum->new(
enum => [qw(perl ruby python php)],
block => sub { warn "I love " . shift->pos(1) },
);
Rules of this class check whether the path matches any of its enum strings.
| Path-Dispatcher documentation | view source | Contained in the Path-Dispatcher distribution. |