Mojolicious-Plugin-RESTRoutes

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Test::NoTabs" : "0",
            "Test::Pod" : "1.41",
            "Test::Pod::Coverage" : "1.08",
            "Test::Pod::LinkCheck" : "0",
            "Test::Pod::No404s" : "0"
         }
      },
      "runtime" : {
         "requires" : {
            "Lingua::EN::Inflect" : "0",
            "Modern::Perl" : "0",
            "Mojo::Base" : "0",
            "Mojo::Util" : "0"
         }
      },
      "test" : {
         "requires" : {
            "Test::Mojo" : "0",
            "Test::More" : "0",
            "lib" : "0"
         }

META.yml  view on Meta::CPAN

    - inc
    - share
    - t
    - xt
provides:
  Mojolicious::Plugin::RESTRoutes:
    file: lib/Mojolicious/Plugin/RESTRoutes.pm
    version: v1.0.0
requires:
  Lingua::EN::Inflect: '0'
  Modern::Perl: '0'
  Mojo::Base: '0'
  Mojo::Util: '0'
version: 1.0.0
x_Dist_Zilla:
  perl:
    version: '5.020003'
  plugins:
    -
      class: Dist::Zilla::Plugin::Git::GatherDir
      config:

cpanfile  view on Meta::CPAN

requires "Lingua::EN::Inflect" => "0";
requires "Modern::Perl" => "0";
requires "Mojo::Base" => "0";
requires "Mojo::Util" => "0";

on 'test' => sub {
  requires "Test::Mojo" => "0";
  requires "Test::More" => "0";
  requires "lib" => "0";
};

on 'configure' => sub {

lib/Mojolicious/Plugin/RESTRoutes.pm  view on Meta::CPAN

use Modern::Perl; # strict, warnings etc.;
package Mojolicious::Plugin::RESTRoutes;
# ABSTRACT: routing helper for RESTful operations
# VERSION
$Mojolicious::Plugin::RESTRoutes::VERSION = '1.0.0';
use Mojo::Base 'Mojolicious::Plugin';

#pod =encoding utf8
#pod
#pod =head1 DESCRIPTION
#pod

perlcritic.rc  view on Meta::CPAN

[TestingAndDebugging::RequireUseStrict]
equivalent_modules = Modern::Perl



( run in 0.488 second using v1.01-cache-2.11-cpan-a5abf4f5562 )