Apache-LogFormat-Compiler

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Time::Local" : "0",
            "perl" : "5.008001"
         }
      },
      "test" : {
         "requires" : {
            "HTTP::Request::Common" : "0",
            "Test::MockTime" : "0",
            "Test::More" : "0.98",
            "Test::Requires" : "0",
            "Try::Tiny" : "0.12",
            "URI::Escape" : "1.60"
         }
      }
   },
   "provides" : {
      "Apache::LogFormat::Compiler" : {
         "file" : "lib/Apache/LogFormat/Compiler.pm",
         "version" : "0.36"
      }
   },

META.yml  view on Meta::CPAN

---
abstract: 'Compile a log format string to perl-code '
author:
  - 'Masahiro Nagano <kazeburo@gmail.com>'
build_requires:
  HTTP::Request::Common: '0'
  Test::MockTime: '0'
  Test::More: '0.98'
  Test::Requires: '0'
  Try::Tiny: '0.12'
  URI::Escape: '1.60'
configure_requires:
  Module::Build::Tiny: '0.035'
dynamic_config: 0
generated_by: 'Minilla/v3.1.7, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: Apache-LogFormat-Compiler

cpanfile  view on Meta::CPAN

requires 'POSIX';
requires 'Time::Local';
requires 'perl', '5.008001';
requires 'POSIX::strftime::Compiler', '0.30';

on test => sub {
    requires 'HTTP::Request::Common';
    requires 'Test::More', '0.98';
    requires 'Test::Requires';
    requires 'Try::Tiny', '0.12';
    requires 'URI::Escape', '1.60';
    requires 'Test::MockTime';
};

t/Req2PSGI.pm  view on Meta::CPAN

package t::Req2PSGI;

use strict;
use warnings;
use URI::Escape ();
use Try::Tiny;

my $TRUE  = (1 == 1);
my $FALSE = !$TRUE;

## copy from HTTP::Message::PSGI
## for remove Plack dependency fro ALFC
sub req_to_psgi {
    my $req = shift;

    unless (try { $req->isa('HTTP::Request') }) {



( run in 0.360 second using v1.01-cache-2.11-cpan-05444aca049 )