Banal-Role-Fallback

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

      "requires" => {
        "Array::Utils" => 0,
        "Banal::Util::Mini" => 0,
        "Data::Printer" => 0,
        "List::MoreUtils" => 0,
        "List::Util" => "1.45",
        "Moo::Role" => 0,
        "Role::Tiny" => 0,
        "Scalar::Util" => 0,
        "Text::ParseWords" => 0,
        "namespace::autoclean" => 0,
        "perl" => "5.014",
        "strict" => 0,
        "utf8" => 0,
        "warnings" => 0
      },
      "test_requires" => {
        "File::Spec" => 0,
        "Module::Metadata" => 0,
        "Test::Compile" => 0,
        "Test::More" => "0.88",

META.json  view on Meta::CPAN

         "requires" : {
            "Array::Utils" : "0",
            "Banal::Util::Mini" : "0",
            "Data::Printer" : "0",
            "List::MoreUtils" : "0",
            "List::Util" : "1.45",
            "Moo::Role" : "0",
            "Role::Tiny" : "0",
            "Scalar::Util" : "0",
            "Text::ParseWords" : "0",
            "namespace::autoclean" : "0",
            "perl" : "5.014",
            "strict" : "0",
            "utf8" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "recommends" : {
            "CPAN::Meta" : "2.120900"
         },

META.yml  view on Meta::CPAN

requires:
  Array::Utils: '0'
  Banal::Util::Mini: '0'
  Data::Printer: '0'
  List::MoreUtils: '0'
  List::Util: '1.45'
  Moo::Role: '0'
  Role::Tiny: '0'
  Scalar::Util: '0'
  Text::ParseWords: '0'
  namespace::autoclean: '0'
  perl: '5.014'
  strict: '0'
  utf8: '0'
  warnings: '0'
resources:
  bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=Banal-Role-Fallback
  homepage: https://github.com/tabulon/p5-Banal-Role-Fallback
  repository: https://github.com/tabulon/p5-Banal-Role-Fallback.git
version: '0.001'
x_Dist_Zilla:

Makefile.PL  view on Meta::CPAN

  "PREREQ_PM" => {
    "Array::Utils" => 0,
    "Banal::Util::Mini" => 0,
    "Data::Printer" => 0,
    "List::MoreUtils" => 0,
    "List::Util" => "1.45",
    "Moo::Role" => 0,
    "Role::Tiny" => 0,
    "Scalar::Util" => 0,
    "Text::ParseWords" => 0,
    "namespace::autoclean" => 0,
    "strict" => 0,
    "utf8" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "File::Spec" => 0,
    "Module::Metadata" => 0,
    "Test::Compile" => 0,
    "Test::More" => "0.88",
    "if" => 0

lib/Banal/Role/Fallback/Moo.pm  view on Meta::CPAN


package Banal::Role::Fallback::Moo;
# vim: set ts=2 sts=2 sw=2 tw=115 et :
# ABSTRACT: A Moo/Moose compatible incarnation of C<Banal::Role::Fallback>
# KEYWORDS: author utility

our $VERSION = '0.001';
# AUTHORITY


use namespace::autoclean;
use Moo::Role;
  with 'Banal::Role::Fallback::Tiny';



1;

=pod

=encoding UTF-8

lib/Banal/Role/Fallback/Tiny.pm  view on Meta::CPAN

# AUTHORITY

use Banal::Util::Mini   qw(tidy_arrayify hash_lookup_staged sanitize_subroutine_name);
use Array::Utils        qw(intersect);
use Scalar::Util        qw(blessed refaddr reftype);
use List::Util 1.45     qw(any none pairs uniq);
use List::MoreUtils     qw(arrayify firstres listcmp);
use Text::ParseWords    qw(quotewords);
use Data::Printer;

use namespace::autoclean;
use Role::Tiny;
requires qw( _fallback_settings );



#######################################
sub _resolve    {  # Transitional. Helps support an older name & interface to _fallback
#######################################
  my  $o            = shift;
  my  %opt          = %{ ref $_[0] eq 'HASH' ? shift : +{} };

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

                      'requires' => {
                                      'Array::Utils' => '0',
                                      'Banal::Util::Mini' => '0',
                                      'Data::Printer' => '0',
                                      'List::MoreUtils' => '0',
                                      'List::Util' => '1.45',
                                      'Moo::Role' => '0',
                                      'Role::Tiny' => '0',
                                      'Scalar::Util' => '0',
                                      'Text::ParseWords' => '0',
                                      'namespace::autoclean' => '0',
                                      'perl' => '5.014',
                                      'strict' => '0',
                                      'utf8' => '0',
                                      'warnings' => '0'
                                    }
                    },
       'test' => {
                   'recommends' => {
                                     'CPAN::Meta' => '2.120900'
                                   },

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

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