Acme-LookOfDisapproval

 view release on metacpan or  search on metacpan

INSTALL  view on Meta::CPAN

Alternatively, if your CPAN shell is set up, you should just be able to do:

    % cpan Acme::LookOfDisapproval

## Manual installation

As a last resort, you can manually install it. If you have not already
downloaded the release tarball, you can find the download link on the module's
MetaCPAN page: https://metacpan.org/pod/Acme::LookOfDisapproval

Untar the tarball, install configure prerequisites (see below), then build it:

    % perl Build.PL
    % ./Build && ./Build test

Then install it:

    % ./Build install

Or the more portable variation:

INSTALL  view on Meta::CPAN

https://metacpan.org/pod/local::lib

The prerequisites of this distribution will also have to be installed manually. The
prerequisites are listed in one of the files: `MYMETA.yml` or `MYMETA.json` generated
by running the manual build process described above.

## Configure Prerequisites

This distribution requires other modules to be installed before this
distribution's installer can be run.  They can be found under the
"configure_requires" key of META.yml or the
"{prereqs}{configure}{requires}" key of META.json.

## Other Prerequisites

This distribution may require additional modules to be installed after running
Build.PL.
Look for prerequisites in the following phases:

* to run ./Build, PHASE = build
* to use the module code itself, PHASE = runtime
* to run tests, PHASE = test

META.json  view on Meta::CPAN

   },
   "name" : "Acme-LookOfDisapproval",
   "no_index" : {
      "directory" : [
         "inc",
         "t",
         "xt"
      ]
   },
   "prereqs" : {
      "configure" : {
         "requires" : {
            "File::Spec::Functions" : "0",
            "Module::Build::Tiny" : "0.034",
            "perl" : "5.008"
         }
      },
      "develop" : {
         "recommends" : {
            "Dist::Zilla::PluginBundle::Author::ETHER" : "0.164",
            "Dist::Zilla::PluginBundle::Git::VersionManager" : "0.007"

META.json  view on Meta::CPAN

                  "type" : "requires"
               }
            },
            "name" : "RuntimeRequires",
            "version" : "6.032"
         },
         {
            "class" : "Dist::Zilla::Plugin::Prereqs",
            "config" : {
               "Dist::Zilla::Plugin::Prereqs" : {
                  "phase" : "configure",
                  "type" : "requires"
               }
            },
            "name" : "ConfigureRequires",
            "version" : "6.032"
         },
         {
            "class" : "inc::MungeInstallers",
            "name" : "=inc::MungeInstallers",
            "version" : null

META.yml  view on Meta::CPAN

author:
  - 'Karen Etheridge <ether@cpan.org>'
build_requires:
  File::Spec: '0'
  JSON::PP: '0'
  Module::Metadata: '0'
  Test::More: '0.88'
  Test::Warnings: '0.009'
  open: '0'
  perl: '5.016'
configure_requires:
  File::Spec::Functions: '0'
  Module::Build::Tiny: '0.034'
  perl: '5.008'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.032, CPAN::Meta::Converter version 2.150010'
keywords:
  - unicode
  - canary
  - warning
  - utf8

META.yml  view on Meta::CPAN

      config:
        Dist::Zilla::Plugin::Prereqs:
          phase: runtime
          type: requires
      name: RuntimeRequires
      version: '6.032'
    -
      class: Dist::Zilla::Plugin::Prereqs
      config:
        Dist::Zilla::Plugin::Prereqs:
          phase: configure
          type: requires
      name: ConfigureRequires
      version: '6.032'
    -
      class: inc::MungeInstallers
      name: =inc::MungeInstallers
      version: ~
    -
      class: Dist::Zilla::Plugin::FinderCode
      name: ':InstallModules'

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

do { my $x = {
       'configure' => {
                        'requires' => {
                                        'File::Spec::Functions' => '0',
                                        'Module::Build::Tiny' => '0.034',
                                        'perl' => '5.008'
                                      }
                      },
       'develop' => {
                      'recommends' => {
                                        'Dist::Zilla::PluginBundle::Author::ETHER' => '0.164',
                                        'Dist::Zilla::PluginBundle::Git::VersionManager' => '0.007'

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 1.117 second using v1.01-cache-2.11-cpan-0a6323c29d9 )