Banal-Mini-Utils

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

      "license" => "perl",
      "module_name" => "Banal::Mini::Utils",
      "recursive_test_files" => 1,
      "requires" => {
        "Carp" => 0,
        "Data::Printer" => 0,
        "Exporter::Shiny" => 0,
        "List::MoreUtils" => 0,
        "List::Util" => "1.45",
        "Scalar::Util" => 0,
        "namespace::autoclean" => 0,
        "overload" => 0,
        "perl" => "5.014",
        "strict" => 0,
        "utf8" => 0,
        "vars" => 0,
        "warnings" => 0
      },
      "test_requires" => {
        "File::Spec" => 0,
        "Module::Metadata" => 0,

META.json  view on Meta::CPAN

         }
      },
      "runtime" : {
         "requires" : {
            "Carp" : "0",
            "Data::Printer" : "0",
            "Exporter::Shiny" : "0",
            "List::MoreUtils" : "0",
            "List::Util" : "1.45",
            "Scalar::Util" : "0",
            "namespace::autoclean" : "0",
            "overload" : "0",
            "perl" : "5.014",
            "strict" : "0",
            "utf8" : "0",
            "vars" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "recommends" : {

META.yml  view on Meta::CPAN

  Banal::Mini::Utils::MungeHas:
    file: lib/Banal/Mini/Utils/MungeHas.pm
    version: '0.002'
requires:
  Carp: '0'
  Data::Printer: '0'
  Exporter::Shiny: '0'
  List::MoreUtils: '0'
  List::Util: '1.45'
  Scalar::Util: '0'
  namespace::autoclean: '0'
  overload: '0'
  perl: '5.014'
  strict: '0'
  utf8: '0'
  vars: '0'
  warnings: '0'
resources:
  bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=Banal-Mini-Utils
  homepage: https://github.com/tabulon/p5-Banal-Mini-Utils
  repository: https://github.com/tabulon/p5-Banal-Mini-Utils.git

Makefile.PL  view on Meta::CPAN

  "MIN_PERL_VERSION" => "5.014",
  "NAME" => "Banal::Mini::Utils",
  "PL_FILES" => {},
  "PREREQ_PM" => {
    "Carp" => 0,
    "Data::Printer" => 0,
    "Exporter::Shiny" => 0,
    "List::MoreUtils" => 0,
    "List::Util" => "1.45",
    "Scalar::Util" => 0,
    "namespace::autoclean" => 0,
    "overload" => 0,
    "strict" => 0,
    "utf8" => 0,
    "vars" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "File::Spec" => 0,
    "Module::Metadata" => 0,
    "Test::Compile" => 0,

Makefile.PL  view on Meta::CPAN

  "Carp" => 0,
  "Data::Printer" => 0,
  "Exporter::Shiny" => 0,
  "File::Spec" => 0,
  "List::MoreUtils" => 0,
  "List::Util" => "1.45",
  "Module::Metadata" => 0,
  "Scalar::Util" => 0,
  "Test::Compile" => 0,
  "Test::More" => 0,
  "namespace::autoclean" => 0,
  "overload" => 0,
  "strict" => 0,
  "utf8" => 0,
  "vars" => 0,
  "warnings" => 0
);

unless ( eval { ExtUtils::MakeMaker->VERSION('6.63_03') } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};

lib/Banal/Mini/Utils.pm  view on Meta::CPAN

use Carp                qw(croak);
use Scalar::Util        qw(blessed  refaddr reftype);
use List::Util 1.45     qw(any first none pairs uniq);
use List::MoreUtils     qw(arrayify firstres listcmp);
use overload;             # TAU : Required by flatten() and hence arrayify() routines copied from List::MoreUtils;



use Data::Printer       qw(p np);  # During development only. TODO: comment this line out later.

use namespace::autoclean;


use Exporter::Shiny;
use vars qw(@EXPORT_OK);
BEGIN {
   @EXPORT_OK = qw(
    msg
    polyvalent

    hash_access

lib/Banal/Mini/Utils/MungeHas.pm  view on Meta::CPAN

# vim: set ts=8 sts=4 sw=4 tw=115 et :
# ABSTRACT: Provide several MUNGER functions that may be use in conjunction with C<MooseX::MungeHas>.
# KEYWORDS: Munge Has has MungeHas MooseX::MungeHas Moose MooseX Moo MooX

our $VERSION = '0.002';
# AUTHORITY

use Data::Printer;    # DEBUG purposes.
use Banal::Mini::Utils qw(peek tidy_arrayify);

use namespace::autoclean;

use Exporter::Shiny qw(
  mhs_dict
  mhs_dictionary

  mhs_lazy_ro
  mhs_specs

  std_haz_mungers
);

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

                                    }
                    },
       'runtime' => {
                      'requires' => {
                                      'Carp' => '0',
                                      'Data::Printer' => '0',
                                      'Exporter::Shiny' => '0',
                                      'List::MoreUtils' => '0',
                                      'List::Util' => '1.45',
                                      'Scalar::Util' => '0',
                                      'namespace::autoclean' => '0',
                                      'overload' => '0',
                                      'perl' => '5.014',
                                      'strict' => '0',
                                      'utf8' => '0',
                                      'vars' => '0',
                                      'warnings' => '0'
                                    }
                    },
       'test' => {
                   'recommends' => {



( run in 0.276 second using v1.01-cache-2.11-cpan-a5abf4f5562 )