CPAN-Mini-Inject-REST

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

  Catalyst::Plugin::ConfigLoader: 0
  Catalyst::Plugin::Static::Simple: 0
  Catalyst::Runtime: 5.80030
  Config::General: 0
  File::Find::Rule: 0
  JSON: 0
  List::MoreUtils: 0
  Moose: 0
  Parse::CPAN::Meta: 0
  Try::Tiny: 0
  namespace::autoclean: 0
resources:
  license: http://dev.perl.org/licenses/
version: 0.03

Makefile.PL  view on Meta::CPAN

requires 'Catalyst::Action::RenderView';
requires 'Catalyst::Controller::REST';
requires 'JSON';
requires 'Catalyst::Action::Serialize::JSON';
requires 'Archive::Extract';
requires 'CPAN::Mini::Inject';
requires 'File::Find::Rule';
requires 'List::MoreUtils';
requires 'Parse::CPAN::Meta';
requires 'Moose';
requires 'namespace::autoclean';
requires 'Try::Tiny';
requires 'Config::General'; # This should reflect the config file format you've chosen
                 # See Catalyst::Plugin::ConfigLoader for supported formats
test_requires 'Test::More' => '0.88';
catalyst;

install_script glob('script/*.pl');
auto_install;
WriteAll;

lib/CPAN/Mini/Inject/REST.pm  view on Meta::CPAN

package CPAN::Mini::Inject::REST;
use Moose;
use namespace::autoclean;

use Catalyst::Runtime 5.80;

# Set flags and add plugins for the application.
#
# Note that ORDERING IS IMPORTANT here as plugins are initialized in order,
# therefore you almost certainly want to keep ConfigLoader at the head of the
# list if you're using it.
#
#         -Debug: activates the debug mode for very useful log messages

lib/CPAN/Mini/Inject/REST/Controller/API/Version1_0.pm  view on Meta::CPAN

use Moose;
use Archive::Extract;
use File::Basename qw/basename/;
use File::Copy;
use File::Find::Rule;
use File::Spec::Functions qw/catdir catfile splitpath/;
use File::Temp;
use List::MoreUtils qw/uniq/;
use Parse::CPAN::Meta;
use Try::Tiny;
use namespace::autoclean;

BEGIN {extends 'Catalyst::Controller::REST'; }

__PACKAGE__->config(
    namespace => 'api/1.0',
    default   => 'application/json',
);

=head1 NAME

lib/CPAN/Mini/Inject/REST/Controller/Root.pm  view on Meta::CPAN

package CPAN::Mini::Inject::REST::Controller::Root;
use Moose;
use namespace::autoclean;

BEGIN { extends 'Catalyst::Controller' }

#
# Sets the actions in this controller to be registered with no prefix
# so they function identically to actions created in MyApp.pm
#
__PACKAGE__->config(namespace => '');

=head1 NAME

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.050 second using v1.00-cache-2.02-grep-82fe00e-cpan-c98054f2a92 )