Acme-CPANAuthors-MBTI

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

         "suggests" : {
            "Dist::Zilla::App::Command::bakeini" : "0.002006",
            "Dist::Zilla::PluginBundle::Author::KENTNL" : "2.025021"
         }
      },
      "runtime" : {
         "requires" : {
            "Acme::CPANAuthors" : "0.24",
            "perl" : "5.008",
            "strict" : "0",
            "utf8" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "recommends" : {
            "CPAN::Meta" : "2.120900",
            "ExtUtils::MakeMaker" : "7.00",
            "Test::More" : "0.99"
         },
         "requires" : {

META.yml  view on Meta::CPAN

  Acme::CPANAuthors::MBTI:
    file: lib/Acme/CPANAuthors/MBTI.pm
    version: '0.001002'
  Acme::CPANAuthors::MBTI::INTP:
    file: lib/Acme/CPANAuthors/MBTI/INTP.pm
    version: '0.001002'
requires:
  Acme::CPANAuthors: '0.24'
  perl: '5.008'
  strict: '0'
  utf8: '0'
  warnings: '0'
resources:
  bugtracker: https://github.com/kentnl/Acme-CPANAuthors-MBTI/issues
  homepage: https://github.com/kentnl/Acme-CPANAuthors-MBTI
  repository: https://github.com/kentnl/Acme-CPANAuthors-MBTI.git
version: '0.001002'

Makefile.PL  view on Meta::CPAN

  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0
  },
  "DISTNAME" => "Acme-CPANAuthors-MBTI",
  "LICENSE" => "perl",
  "MIN_PERL_VERSION" => "5.008",
  "NAME" => "Acme::CPANAuthors::MBTI",
  "PREREQ_PM" => {
    "Acme::CPANAuthors" => "0.24",
    "strict" => 0,
    "utf8" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0,
    "File::Spec" => 0,
    "Test::More" => 0
  },
  "VERSION" => "0.001002",
  "test" => {
    "TESTS" => "t/*.t t/00-compile/*.t"
  }
);


my %FallbackPrereqs = (
  "Acme::CPANAuthors" => "0.24",
  "ExtUtils::MakeMaker" => 0,
  "File::Spec" => 0,
  "Test::More" => 0,
  "strict" => 0,
  "utf8" => 0,
  "warnings" => 0
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};
  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}

inc/expand_author_list.pm  view on Meta::CPAN

use HTTP::Tiny;
use Parse::CPAN::Whois;
use Acme::CPANAuthors::Factory;
use JSON::MaybeXS 1.001000;
use Path::Tiny qw(path);
use HTML::Entities;
use Math::Random::MT;

sub tempdir { return state $tempdir = Path::Tiny->tempdir() }
sub http    { return state $http    = HTTP::Tiny->new() }
sub json    { return state $json    = JSON::MaybeXS->new( utf8 => 0 ) }

sub rng {
  return state $rng = Math::Random::MT->new( map { unpack 'L', $_ } q[Kent], q[ is ], q[a du], q[ll b], q[oy  ] );
}

sub dolog { *STDERR->print("$_[0]\n") }

sub mirror_whois {
  my ($filename) = @_;
  my $out = tempdir()->child($filename);

lib/Acme/CPANAuthors/MBTI/INTP.pm  view on Meta::CPAN

use 5.008;    # utf8
use strict;
use warnings;
use utf8;

package Acme::CPANAuthors::MBTI::INTP;

# ABSTRACT: The TiNe CPAN Authors

our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY

our $VERSION = '0.001002';
#<<<
# Code inserted by inc/expand_author_list#authors_to_code

maint/perlcritic.rc.gen.pl  view on Meta::CPAN

#!/usr/bin/env perl
## no critic (Modules::RequireVersionVar)

# ABSTRACT: Write an INI file from a bundle

use 5.008;    # utf8
use strict;
use warnings;
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;

maint/perlcritic.rc.gen.pl  view on Meta::CPAN

$bundle->remove_policy('Documentation::RequirePodLinksIncludeText');

#$bundle->remove_policy('ErrorHandling::RequireCarping');
#$bundle->remove_policy('NamingConventions::Capitalization');

my $inf = $bundle->actionlist->get_inflated;

my $config = $inf->apply_config;

{
  my $rcfile = path('./perlcritic.rc')->openw_utf8;
  $rcfile->print( $config->as_ini, "\n" );
  close $rcfile or croak 'Something fubared closing perlcritic.rc';
}
my $deps = $inf->own_deps;
{
  my $target = path('./misc');
  $target->mkpath if not $target->is_dir;

  my $depsfile = $target->child('perlcritic.deps')->openw_utf8;
  for my $key ( sort keys %{$deps} ) {
    $depsfile->printf( "%s~%s\n", $key, $deps->{$key} );
    *STDERR->printf( "%s => %s\n", $key, $deps->{$key} );
  }
  close $depsfile or carp 'Something fubared closing perlcritic.deps';
}

maint/travisci.pl  view on Meta::CPAN

#!/usr/bin/env perl
# ABSTRACT: Fixup vars for this

use strict;
use warnings;
use utf8;

use version;

sub {
  my ($yaml)       = @_;
  my $support      = {};
  my $base_version = version->parse('v5.14');
  my @extra_allow_fail;

  for my $include_matrix ( @{ $yaml->{matrix}->{include} } ) {

misc/built_with.json  view on Meta::CPAN

      "Software::License::Perl_5" : "0.103012",
      "Test::CPAN::Changes" : "0.400002",
      "Test::CPAN::Meta" : "0.25",
      "Test::EOL" : "1.6",
      "Test::Kwalitee" : "1.25",
      "Test::MinimumVersion" : "0.101082",
      "Test::More" : "1.302073",
      "Test::Pod" : "1.51",
      "Test::Pod::Coverage" : "1.10",
      "strict" : "1.11",
      "utf8" : "1.19",
      "warnings" : "1.37"
   },
   "perl" : {
      "original" : "v5.25.10",
      "qv" : 1,
      "version" : [
         5,
         25,
         10
      ]

perlcritic.rc  view on Meta::CPAN


[Lax::ProhibitEmptyQuotes::ExceptAsFallback]

[Lax::ProhibitLeadingZeros::ExceptChmod]

[Lax::ProhibitStringyEval::ExceptForRequire]

[Lax::RequireEndWithTrueConst]

[Lax::RequireExplicitPackage::ExceptForPragmata]
allowed_pragmata = diagnostics feature perlversion strict warnings utf8

[Miscellanea::ProhibitFormats]

[Miscellanea::ProhibitTies]

[Miscellanea::ProhibitUnrestrictedNoCritic]

[-Miscellanea::ProhibitUselessNoCritic]

[-Miscellanea::RequireRcsKeywords]

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

                      'suggests' => {
                                      'Dist::Zilla::App::Command::bakeini' => '0.002006',
                                      'Dist::Zilla::PluginBundle::Author::KENTNL' => '2.025021'
                                    }
                    },
       'runtime' => {
                      'requires' => {
                                      'Acme::CPANAuthors' => '0.24',
                                      'perl' => '5.008',
                                      'strict' => '0',
                                      'utf8' => '0',
                                      'warnings' => '0'
                                    }
                    },
       'test' => {
                   'recommends' => {
                                     'CPAN::Meta' => '2.120900',
                                     'ExtUtils::MakeMaker' => '7.00',
                                     'Test::More' => '0.99'
                                   },
                   'requires' => {



( run in 1.076 second using v1.01-cache-2.11-cpan-49f99fa48dc )