ASP4-PSGI

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

  - Now if you have a '/404.asp' we will try to call it if we get a 404 error.

2011-12-12    v0.003
  - Now compatible with more recent versions of ASP4.

2010-09-21    v0.002
  - Woops!  Was not returning a coderef.  Now we are.

2010-09-21    v0.001
  - Initial version.
  - Tested with Plack, Corona and Starman.


META.yml  view on Meta::CPAN

--- #YAML:1.0
name:               ASP4-PSGI
version:            0.004
abstract:           Run your ASP4 web application under PSGI/Plack.
author:
    - John Drago <jdrago_999@yahoo.com>
license:            artistic
distribution_type:  module
test_requires:
    Test::More:           0
requires:
    ASP4:                 1.077
    PSGI:                 1.03
    Plack:                0.9949
no_index:
    directory:
        - t
        - inc
generated_by:       Hand
meta-spec:

Makefile.PL  view on Meta::CPAN

use strict;
use warnings;
use inc::Module::Install;
use 5.008005;

name 'ASP4-PSGI';
perl_version '5.008001';
license 'perl';
all_from 'lib/ASP4/PSGI.pm';

test_requires 'Test::More'  => '0';

requires 'ASP4'   => '1.077';
requires 'PSGI'   => '1.03';
requires 'Plack'  => '0.9949';

tests_recursive();
WriteAll();

t/010-basic/010-compile.t  view on Meta::CPAN

#!/usr/bin/env perl -w

use strict;
use warnings 'all';
use Test::More 'no_plan';

use_ok('ASP4::PSGI');


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

( run in 1.332 second using v1.00-cache-2.02-grep-82fe00e-cpan-585fae043c8 )