/usr/share/perl5/Router/Simple/Declare.pm is in librouter-simple-perl 0.17-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | package Router::Simple::Declare;
use strict;
use warnings;
use parent 'Exporter';
use Router::Simple;
use Carp ();
our @EXPORT = qw/router connect submapper/;
our $_ROUTER;
sub router (&) {
local $_ROUTER = Router::Simple->new();
$_[0]->();
$_ROUTER;
}
BEGIN {
no strict 'refs';
for my $meth (qw/connect submapper/) {
*{$meth} = sub {
local $Carp::CarpLevel = $Carp::CarpLevel + 1;
$_ROUTER->$meth(@_);
};
}
}
1;
__END__
=for stopwords submapper
=head1 NAME
Router::Simple::Declare - declarative interface for Router::Simple
=head1 SYNOPSIS
use Router::Simple::Declare;
my $router = router {
connect '/{controller}/{action}/{id}';
submapper('/account', {controller => 'Account'})
->connect('/login', {action => 'login'})
->connect('/logout', {action => 'logout'});
};
$router->match('/entry/show/3');
=head1 DESCRIPTION
Easy way to declare router object.
=head1 USAGE
look the SYNOPSIS.see L<Router::Simple> for more details.
=head1 FUNCTIONS
=over 4
=item router
=item connect
=item submapper
=back
=head1 SEE ALSO
L<Router::Simple>
=cut
|