Abilities

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Pod::Coverage::TrustPod" : "0",
            "Test::Pod" : "1.41",
            "Test::Pod::Coverage" : "1.08"
         }
      },
      "runtime" : {
         "requires" : {
            "Carp" : "0",
            "Hash::Merge" : "0",
            "Moo::Role" : "0",
            "namespace::autoclean" : "0",
            "perl" : "5.006"
         }
      },
      "test" : {
         "requires" : {
            "Moo" : "0",
            "Test::More" : "0",
            "strict" : "0",
            "warnings" : "0"
         }

META.yml  view on Meta::CPAN

generated_by: 'Dist::Zilla version 4.300031, CPAN::Meta::Converter version 2.120921'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4
name: Abilities
requires:
  Carp: 0
  Hash::Merge: 0
  Moo::Role: 0
  namespace::autoclean: 0
  perl: 5.006
resources:
  homepage: https://github.com/ido50/Abilities
  repository: https://github.com/ido50/Abilities.git
version: 0.5

Makefile.PL  view on Meta::CPAN

    "ExtUtils::MakeMaker" => "6.30"
  },
  "DISTNAME" => "Abilities",
  "EXE_FILES" => [],
  "LICENSE" => "perl",
  "NAME" => "Abilities",
  "PREREQ_PM" => {
    "Carp" => 0,
    "Hash::Merge" => 0,
    "Moo::Role" => 0,
    "namespace::autoclean" => 0
  },
  "VERSION" => "0.5",
  "test" => {
    "TESTS" => "t/*.t"
  }
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.56) } ) {
  my $br = delete $WriteMakefileArgs{BUILD_REQUIRES};

lib/Abilities.pm  view on Meta::CPAN

package Abilities;

# ABSTRACT: Simple, hierarchical user authorization for web applications, with optional support for plan-based (paid) services.

use Carp;
use Hash::Merge qw/merge/;
use Moo::Role;
use namespace::autoclean;

our $VERSION = "0.5";
$VERSION = eval $VERSION;

=head1 NAME

Abilities - Simple, hierarchical user authorization for web applications, with optional support for plan-based (paid) services.

=head1 VERSION

lib/Abilities/Features.pm  view on Meta::CPAN

package Abilities::Features;

# ABSTRACT: Extends Abilities with plan management for subscription-based web services.

use Carp;
use Hash::Merge qw/merge/;
use Moo::Role;
use namespace::autoclean;

our $VERSION = "0.5";
$VERSION = eval $VERSION;

=head1 NAME

Abilities::Features - Extends Abilities with plan management for subscription-based web services.

=head1 VERSION

t/lib/TestCustomer.pm  view on Meta::CPAN

package TestCustomer;

use Moo;
use namespace::autoclean;

has 'name' => (
	is => 'ro',
	required => 1
);

has 'features' => (
	is => 'ro',
	default => sub { [] }
);

t/lib/TestPlan.pm  view on Meta::CPAN

package TestPlan;

use Moo;
use namespace::autoclean;

has 'name' => (
	is => 'ro',
	required => 1
);

has 'features' => (
	is => 'ro',
	default => sub { [] }
);

t/lib/TestRole.pm  view on Meta::CPAN

package TestRole;

use Moo;
use namespace::autoclean;

has 'name' => (
	is => 'ro',
	required => 1
);

has 'actions' => (
	is => 'ro',
	default => sub { [] }
);

t/lib/TestUser.pm  view on Meta::CPAN

package TestUser;

use Moo;
use namespace::autoclean;

has 'name' => (
	is => 'ro',
	required => 1
);

has 'actions' => (
	is => 'ro',
	default => sub { [] }
);

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.035 second using v1.00-cache-2.02-grep-82fe00e-cpan-c98054f2a92 )