Acme-Flat
    
    
  
  
  
view release on metacpan or search on metacpan
   "generated_by" : "Dist::Zilla version 6.009, CPAN::Meta::Converter version 2.150010",
   "license" : [
      "perl_5"
   ],
   "meta-spec" : {
      "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
      "version" : 2
   },
   "name" : "Acme-Flat",
   "prereqs" : {
      "configure" : {
         "recommends" : {
            "ExtUtils::MakeMaker" : "7.00"
         },
         "requires" : {
            "ExtUtils::MakeMaker" : "0",
            "perl" : "5.006"
         }
      },
      "develop" : {
         "recommends" : {
    
  
  
  ---
abstract: 'A Pure Perl reimplementation of B Internals'
author:
  - 'Kent Fredric <kentnl@cpan.org>'
build_requires:
  ExtUtils::MakeMaker: '0'
  File::Spec: '0'
  Test::More: '0'
  perl: '5.006'
configure_requires:
  ExtUtils::MakeMaker: '0'
  perl: '5.006'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.009, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: Acme-Flat
provides:
    
  
  
  maint/perlcritic.rc.gen.pl view on Meta::CPAN
use utf8;
our $VERSION = 0.001;
use Carp qw( croak carp );
use Perl::Critic::ProfileCompiler::Util qw( create_bundle );
use Path::Tiny qw(path);
## no critic (ErrorHandling::RequireUseOfExceptions)
my $bundle = create_bundle('Example::Author::KENTNL');
$bundle->configure;
my @stopwords = (qw(perl reimplementation Metadata LValue ithreads Unary SV ));
for my $wordlist (@stopwords) {
  $bundle->add_or_append_policy_field( 'Documentation::PodSpelling' => ( 'stop_words' => $wordlist ) );
}
#$bundle->add_or_append_policy_field(
#  'Subroutines::ProhibitCallsToUndeclaredSubs' => ( 'exempt_subs' => 'String::Formatter::str_rf' ), );
#$bundle->remove_policy('ErrorHandling::RequireUseOfExceptions');
    
  
  
  misc/Changes.deps view on Meta::CPAN
This file contains changes in REQUIRED dependencies for standard CPAN phases (configure/build/runtime/test)
0.001001
 [Changed / test requires]
 - Test::More 0.89 â 0
    
  
  
  misc/Changes.deps.all view on Meta::CPAN
This file contains ALL changes in dependencies in both REQUIRED / OPTIONAL dependencies for all phases (configure/build/runtime/test/develop)
0.001001
 [Added / develop requires]
 - Dist::Zilla::Plugin::MetaYAML::Minimal
 - Dist::Zilla::Plugin::RemovePrereqs::Provided
 - English
 - Software::License::Perl_5
 - Test::MinimumVersion
 [Changed / develop requires]
    
  
  
  misc/Changes.deps.opt view on Meta::CPAN
This file contains changes in OPTIONAL dependencies for standard CPAN phases (configure/build/runtime/test)
0.001001
    
  
  
  t/00-report-prereqs.dd view on Meta::CPAN
do { my $x = {
       'configure' => {
                        'recommends' => {
                                          'ExtUtils::MakeMaker' => '7.00'
                                        },
                        'requires' => {
                                        'ExtUtils::MakeMaker' => '0',
                                        'perl' => '5.006'
                                      }
                      },
       'develop' => {
                      'recommends' => {
    
  
  
  t/00-report-prereqs.t view on Meta::CPAN
my @full_reports;
my @dep_errors;
my $req_hash = $HAS_CPAN_META ? $full_prereqs->as_string_hash : $full_prereqs;
# Add static includes into a fake section
for my $mod (@include) {
    $req_hash->{other}{modules}{$mod} = 0;
}
for my $phase ( qw(configure build test runtime develop other) ) {
    next unless $req_hash->{$phase};
    next if ($phase eq 'develop' and not $ENV{AUTHOR_TESTING});
    for my $type ( qw(requires recommends suggests conflicts modules) ) {
        next unless $req_hash->{$phase}{$type};
        my $title = ucfirst($phase).' '.ucfirst($type);
        my @reports = [qw/Module Want Have/];
        for my $mod ( sort keys %{ $req_hash->{$phase}{$type} } ) {
    
  
  
  
( run in 0.695 second using v1.01-cache-2.11-cpan-a1d94b6210f )