Arriba

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

      "test" : {
         "recommends" : {
            "CPAN::Meta" : "0",
            "CPAN::Meta::Requirements" : "0"
         },
         "requires" : {
            "ExtUtils::MakeMaker" : "0",
            "File::Spec" : "0",
            "File::Spec::Functions" : "0",
            "File::Temp" : "0",
            "HTTP::Request::Common" : "0",
            "HTTP::Tiny::SPDY" : "0",
            "IO::Handle" : "0",
            "IPC::Open3" : "0",
            "List::Util" : "0",
            "Plack::LWPish" : "0",
            "Plack::Test::Suite" : "0",
            "Test::More" : "0"
         }
      }
   },

META.yml  view on Meta::CPAN

---
abstract: 'PSGI web server with SPDY support'
author:
  - 'Michal Wojciechowski <odyniec@cpan.org>'
build_requires:
  ExtUtils::MakeMaker: 0
  File::Spec: 0
  File::Spec::Functions: 0
  File::Temp: 0
  HTTP::Request::Common: 0
  HTTP::Tiny::SPDY: 0
  IO::Handle: 0
  IPC::Open3: 0
  List::Util: 0
  Plack::LWPish: 0
  Plack::Test::Suite: 0
  Test::More: 0
configure_requires:
  ExtUtils::MakeMaker: 6.17
dynamic_config: 0

Makefile.PL  view on Meta::CPAN

    "base" => 0,
    "constant" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0,
    "File::Spec" => 0,
    "File::Spec::Functions" => 0,
    "File::Temp" => 0,
    "HTTP::Request::Common" => 0,
    "HTTP::Tiny::SPDY" => 0,
    "IO::Handle" => 0,
    "IPC::Open3" => 0,
    "List::Util" => 0,
    "Plack::LWPish" => 0,
    "Plack::Test::Suite" => 0,
    "Test::More" => 0
  },
  "VERSION" => "0.020",
  "test" => {

Makefile.PL  view on Meta::CPAN



my %FallbackPrereqs = (
  "Data::Dump" => 0,
  "ExtUtils::MakeMaker" => 0,
  "File::Spec" => 0,
  "File::Spec::Functions" => 0,
  "File::Temp" => 0,
  "HTTP::Date" => 0,
  "HTTP::Parser::XS" => 0,
  "HTTP::Request::Common" => 0,
  "HTTP::Status" => 0,
  "HTTP::Tiny::SPDY" => 0,
  "IO::Handle" => 0,
  "IO::Socket" => 0,
  "IO::Socket::SSL" => 0,
  "IPC::Open3" => 0,
  "List::Util" => 0,
  "Net::SPDY::Session" => 0,
  "Net::Server::PreFork" => 0,
  "Net::Server::SIG" => 0,

cpanfile  view on Meta::CPAN

requires "constant" => "0";
requires "perl" => "5.008";
requires "strict" => "0";
requires "warnings" => "0";

on 'test' => sub {
  requires "ExtUtils::MakeMaker" => "0";
  requires "File::Spec" => "0";
  requires "File::Spec::Functions" => "0";
  requires "File::Temp" => "0";
  requires "HTTP::Request::Common" => "0";
  requires "HTTP::Tiny::SPDY" => "0";
  requires "IO::Handle" => "0";
  requires "IPC::Open3" => "0";
  requires "List::Util" => "0";
  requires "Plack::LWPish" => "0";
  requires "Plack::Test::Suite" => "0";
  requires "Test::More" => "0";
};

on 'test' => sub {

t/00-report-prereqs.t  view on Meta::CPAN

my @modules = qw(
  CPAN::Meta
  CPAN::Meta::Requirements
  Data::Dump
  ExtUtils::MakeMaker
  File::Spec
  File::Spec::Functions
  File::Temp
  HTTP::Date
  HTTP::Parser::XS
  HTTP::Request::Common
  HTTP::Status
  HTTP::Tiny::SPDY
  IO::Handle
  IO::Socket
  IO::Socket::SSL
  IPC::Open3
  List::Util
  Net::SPDY::Session
  Net::Server::PreFork
  Net::Server::SIG

t/suite-https.t  view on Meta::CPAN

use warnings;
use strict;

use HTTP::Request::Common;
use Plack::LWPish;
use Plack::Test::Suite;
use Test::More;

# Redefine Plack::LWPish::request to change protocol to HTTPS
# (yes, this is a dirty hack)
{
    no strict 'refs';
    no warnings 'redefine';
    

t/suite-spdy.t  view on Meta::CPAN

use warnings;
use strict;

use HTTP::Tiny::SPDY;
use HTTP::Request::Common;
use Plack::LWPish;
use Plack::Test::Suite;
use Test::More;

# Redefine Plack::LWPish::new to use HTTP::Tiny::SPDY and Plack::LWPish::request
# to change protocol to HTTPS (yes, this is a dirty hack)
{
    no strict 'refs';
    no warnings 'redefine';
    



( run in 0.759 second using v1.01-cache-2.11-cpan-de7293f3b23 )