Backbone-Events
view release on metacpan or search on metacpan
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: '1.4'
name: Backbone-Events
requires:
Carp: '0'
List::MoreUtils: '0'
Moo::Role: '0'
Scalar::Util: '0'
namespace::autoclean: '0.16'
perl: v5.10.1
resources:
bugtracker: https://github.com/mark-5/p5-backbone-events/issues
repository: git://github.com/mark-5/p5-backbone-events.git
version: 0.0.3
Makefile.PL view on Meta::CPAN
"DISTNAME" => "Backbone-Events",
"EXE_FILES" => [],
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.010001",
"NAME" => "Backbone::Events",
"PREREQ_PM" => {
"Carp" => 0,
"List::MoreUtils" => 0,
"Moo::Role" => 0,
"Scalar::Util" => 0,
"namespace::autoclean" => "0.16"
},
"TEST_REQUIRES" => {
"Exporter" => 0,
"FindBin::libs" => 0,
"Moo" => 0,
"Test::Fatal" => 0,
"Test::LeakTrace" => 0,
"Test::More" => 0,
"Test::Strict" => 0,
"parent" => 0
Makefile.PL view on Meta::CPAN
"ExtUtils::MakeMaker" => 0,
"FindBin::libs" => 0,
"List::MoreUtils" => 0,
"Moo" => 0,
"Moo::Role" => 0,
"Scalar::Util" => 0,
"Test::Fatal" => 0,
"Test::LeakTrace" => 0,
"Test::More" => 0,
"Test::Strict" => 0,
"namespace::autoclean" => "0.16",
"parent" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
$WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}
lib/Backbone/Events.pm view on Meta::CPAN
package Backbone::Events;
$Backbone::Events::VERSION = '0.0.3';
use Carp qw(confess);
use List::MoreUtils qw(any none);
use Scalar::Util qw(blessed);
use Moo::Role;
use namespace::autoclean -also => qr/^__/;
# ABSTRACT: a port of the Backbone.js event API
has _bbe_events => (
is => 'ro',
default => sub { {} },
);
has _bbe_id => (
( run in 0.274 second using v1.01-cache-2.11-cpan-4d50c553e7e )