Dancer2-Plugin-Routing
view release on metacpan or search on metacpan
},
"configure" : {
"requires" : {
"ExtUtils::MakeMaker" : "0"
}
},
"runtime" : {
"requires" : {
"Dancer2" : "0",
"Dancer2::Plugin::RootURIFor" : "0",
"Ref::Util" : "0",
"perl" : "5.010000"
}
},
"test" : {
"requires" : {
"HTTP::Request::Common" : "0",
"Plack::Builder" : "0",
"Plack::Test" : "0",
"Pod::Coverage::TrustPod" : "0",
"Pod::Usage" : "0",
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: '1.4'
name: Dancer2-Plugin-Routing
no_index:
directory:
- t
- inc
requires:
Dancer2: '0'
Dancer2::Plugin::RootURIFor: '0'
Ref::Util: '0'
perl: '5.010000'
resources:
repository: https://github.com/mziescha/Dancer2-Plugin-Routing.git
version: '0.01'
Makefile.PL view on Meta::CPAN
NAME => 'Dancer2::Plugin::Routing',
AUTHOR => q{Mario Zieschang <mziescha@cpan.org>},
VERSION_FROM => 'lib/Dancer2/Plugin/Routing.pm',
LICENSE => 'artistic_2',
PL_FILES => {},
MIN_PERL_VERSION => 5.10.0,
CONFIGURE_REQUIRES => { 'ExtUtils::MakeMaker' => 0, },
PREREQ_PM => {
'Dancer2' => 0,
'Dancer2::Plugin::RootURIFor' => 0,
'Ref::Util' => 0,
},
TEST_REQUIRES => {
'HTTP::Request::Common' => 0,
'Test::CheckManifest' => 0,
'Test::Pod::Coverage' => 0,
'Test::Requires' => 0,
'Test::Pod' => 0,
'Test::More' => 0,
'Plack::Builder' => 0,
'Plack::Test' => 0,
lib/Dancer2/Plugin/Routing.pm view on Meta::CPAN
package Dancer2::Plugin::Routing;
use 5.10.0;
use strict;
use warnings;
use Dancer2::Plugin;
use Ref::Util qw/is_hashref/;
use base qw/Dancer2::Plugin::RootURIFor/;
=head1 NAME
Dancer2::Plugin::Routing - A dancer2 plugin for configurable routing.
=head1 VERSION
Version 0.01
( run in 0.291 second using v1.01-cache-2.11-cpan-4d50c553e7e )