Config-MVP-BundleInspector

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "warnings" : "0"
         }
      },
      "test" : {
         "requires" : {
            "ExtUtils::MakeMaker" : "0",
            "File::Find" : "0",
            "File::Spec::Functions" : "0",
            "File::Temp" : "0",
            "List::Util" : "0",
            "Test::Differences" : "0",
            "Test::More" : "0.96"
         }
      }
   },
   "provides" : {
      "Config::MVP::BundleInspector" : {
         "file" : "lib/Config/MVP/BundleInspector.pm",
         "version" : "0.001"
      }
   },

META.yml  view on Meta::CPAN

---
abstract: 'Determine prereqs and INI string from PluginBundles'
author:
  - 'Randy Stauner <rwstauner@cpan.org>'
build_requires:
  ExtUtils::MakeMaker: 0
  File::Find: 0
  File::Spec::Functions: 0
  File::Temp: 0
  List::Util: 0
  Test::Differences: 0
  Test::More: 0.96
configure_requires:
  ExtUtils::MakeMaker: 6.30
dynamic_config: 0
generated_by: 'Dist::Zilla version 4.300030, 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: Config-MVP-BundleInspector

Makefile.PL  view on Meta::CPAN


my %WriteMakefileArgs = (
  "ABSTRACT" => "Determine prereqs and INI string from PluginBundles",
  "AUTHOR" => "Randy Stauner <rwstauner\@cpan.org>",
  "BUILD_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0,
    "File::Find" => 0,
    "File::Spec::Functions" => 0,
    "File::Temp" => 0,
    "List::Util" => 0,
    "Test::Differences" => 0,
    "Test::More" => "0.96"
  },
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => "6.30"
  },
  "DISTNAME" => "Config-MVP-BundleInspector",
  "EXE_FILES" => [],
  "LICENSE" => "perl",
  "NAME" => "Config::MVP::BundleInspector",
  "PREREQ_PM" => {

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

  Config::MVP::Writer::INI
  ExtUtils::MakeMaker
  File::Find
  File::Spec::Functions
  File::Temp
  List::Util
  Moose
  MooseX::AttributeShortcuts
  MooseX::Types::Moose
  MooseX::Types::Perl
  Test::Differences
  Test::More
  namespace::autoclean
  perl
  strict
  warnings
);

# replace modules with dynamic results from MYMETA.json if we can
# (hide CPAN::Meta from prereq scanner)
my $cpan_meta = "CPAN::Meta";

t/basic.t  view on Meta::CPAN

use strict;
use warnings;
use Test::More 0.96;
use lib 't/lib';
use TestBundles;
use Test::Differences;

my $mod = 'Config::MVP::BundleInspector';
eval "require $mod" or die $@;

subtest mvp_bundle_config => sub {
  my $bundle = 'TestBundles::RoundHere';
  my $bi = new_ok($mod, [
    bundle_class => $bundle,
  ]);



( run in 1.655 second using v1.01-cache-2.11-cpan-39bf76dae61 )