AnyEvent-Stomper

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

   "name" : "AnyEvent-Stomper",
   "no_index" : {
      "directory" : [
         "t",
         "inc"
      ]
   },
   "prereqs" : {
      "build" : {
         "requires" : {
            "Test::Fatal" : "0.013",
            "Test::MockObject" : "1.20150527",
            "Test::More" : "0.98"
         }
      },
      "configure" : {
         "requires" : {
            "ExtUtils::MakeMaker" : "6.64"
         }
      },
      "runtime" : {

META.yml  view on Meta::CPAN

---
abstract: 'Flexible non-blocking STOMP client'
author:
  - 'Eugene Ponizovsky <ponizovsky@gmail.com>'
build_requires:
  Test::Fatal: '0.013'
  Test::MockObject: '1.20150527'
  Test::More: '0.98'
configure_requires:
  ExtUtils::MakeMaker: '6.64'
dynamic_config: 1
generated_by: 'ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 2.143240'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'

Makefile.PL  view on Meta::CPAN

    'Scalar::Util'    => '0',
    'List::MoreUtils' => '0.410',
    'Carp'            => '0',
    version           => '0.77',
  },
  CONFIGURE_REQUIRES => {
    'ExtUtils::MakeMaker' => '6.64',
  },
  BUILD_REQUIRES => {
    'Test::More'       => '0.98',
    'Test::Fatal'      => '0.013',
    'Test::MockObject' => '1.20150527',
  },
  META_MERGE => {
    resources => {
      homepage   => 'https://github.com/iph0/AnyEvent-Stomper',
      bugtracker => 'https://github.com/iph0/AnyEvent-Stomper/issues',
      repository => 'https://github.com/iph0/AnyEvent-Stomper',
      license    => 'http://dev.perl.org/licenses/',
    },
  },

t/03-exceptions.t  view on Meta::CPAN

use 5.008000;
use strict;
use warnings;

use Test::More tests => 15;
use Test::Fatal;
use AnyEvent::Stomper;
use AnyEvent::Stomper::Cluster;

t_heartbeat();
t_conn_timeout();
t_reconnect_interval();
t_on_message();
t_ack_message();
t_nodes();



( run in 3.111 seconds using v1.01-cache-2.11-cpan-54e63673c56 )