AnyEvent-Net-MPD

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

      "test" : {
         "requires" : {
            "Array::Utils" : "0",
            "Data::Printer" : "0",
            "List::Util" : "0",
            "Log::Any::Adapter" : "0",
            "PerlX::Maybe" : "0",
            "Term::ReadLine" : "0",
            "Test::More" : "1.302078",
            "Test::Warnings" : "0.026",
            "Try::Tiny" : "0.28",
            "perl" : "5.010"
         }
      }
   },
   "provides" : {
      "AnyEvent::Net::MPD" : {
         "file" : "lib/AnyEvent/Net/MPD.pm",
         "version" : "0.002"
      }
   },

META.yml  view on Meta::CPAN

  - 'José Joaquín Atria <jjatria@cpan.org>'
build_requires:
  Array::Utils: '0'
  Data::Printer: '0'
  List::Util: '0'
  Log::Any::Adapter: '0'
  PerlX::Maybe: '0'
  Term::ReadLine: '0'
  Test::More: '1.302078'
  Test::Warnings: '0.026'
  Try::Tiny: '0.28'
  perl: '5.010'
configure_requires:
  ExtUtils::MakeMaker: '0'
  perl: '5.010'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.010, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'

Makefile.PL  view on Meta::CPAN

  },
  "TEST_REQUIRES" => {
    "Array::Utils" => 0,
    "Data::Printer" => 0,
    "List::Util" => 0,
    "Log::Any::Adapter" => 0,
    "PerlX::Maybe" => 0,
    "Term::ReadLine" => 0,
    "Test::More" => "1.302078",
    "Test::Warnings" => "0.026",
    "Try::Tiny" => "0.28"
  },
  "VERSION" => "0.002",
  "test" => {
    "TESTS" => "t/*.t"
  }
);


my %FallbackPrereqs = (
  "AnyEvent" => "7.13",

Makefile.PL  view on Meta::CPAN

  "Data::Printer" => 0,
  "List::Util" => 0,
  "Log::Any" => "1.049",
  "Log::Any::Adapter" => 0,
  "Moo" => "2.003002",
  "MooX::HandlesVia" => "0.001008",
  "PerlX::Maybe" => 0,
  "Term::ReadLine" => 0,
  "Test::More" => "1.302078",
  "Test::Warnings" => "0.026",
  "Try::Tiny" => "0.28",
  "Types::Standard" => "1.000006",
  "strict" => 0,
  "warnings" => 0
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};
  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;

dist.ini  view on Meta::CPAN

AnyEvent = 7.13
AnyEvent::Emitter = 0.02
Log::Any = 1.049
Moo = 2.003002
MooX::HandlesVia = 0.001008
Types::Standard = 1.000006

[Prereqs / TestRequires]
Test::More = 1.302078
Test::Warnings = 0.026
Try::Tiny = 0.28

t/basic.t  view on Meta::CPAN

use Test::More;
use Test::Warnings;
use Try::Tiny;

use AnyEvent::Net::MPD;

ok my $mpd = AnyEvent::Net::MPD->new, 'constructor succeeds';

# Attributes
can_ok $mpd, $_ foreach qw( version auto_connect state password host port );

# Methods
can_ok $mpd, $_ foreach qw( send get idle noidle connect );



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