App-Dex

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Test::Pod" : "1.41",
            "perl" : "5.006"
         }
      },
      "runtime" : {
         "requires" : {
            "IPC::Run3" : "0",
            "List::Util" : "0",
            "Moo" : "0",
            "Pod::Usage" : "0",
            "Try::Tiny" : "0",
            "YAML::PP" : "0",
            "strict" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "recommends" : {
            "CPAN::Meta" : "2.120900"
         },
         "requires" : {

META.yml  view on Meta::CPAN

    - xt
provides:
  App::Dex:
    file: lib/App/Dex.pm
    version: '0.002002'
requires:
  IPC::Run3: '0'
  List::Util: '0'
  Moo: '0'
  Pod::Usage: '0'
  Try::Tiny: '0'
  YAML::PP: '0'
  strict: '0'
  warnings: '0'
resources:
  bugtracker: https://github.com/symkat/App-Dex/issues
  repository: git://github.com/symkat/App-Dex.git
version: '0.002002'
x_generated_by_perl: v5.32.1
x_serialization_backend: 'YAML::Tiny version 1.73'
x_spdx_expression: 'Artistic-1.0-Perl OR GPL-1.0-or-later'

Makefile.PL  view on Meta::CPAN

  "EXE_FILES" => [
    "scripts.bare/dex"
  ],
  "LICENSE" => "perl",
  "NAME" => "App::Dex",
  "PREREQ_PM" => {
    "IPC::Run3" => 0,
    "List::Util" => 0,
    "Moo" => 0,
    "Pod::Usage" => 0,
    "Try::Tiny" => 0,
    "YAML::PP" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Cwd" => 0,
    "ExtUtils::MakeMaker" => 0,
    "File::Find" => 0,
    "File::Spec" => 0,
    "File::Temp" => 0,

Makefile.PL  view on Meta::CPAN

  "ExtUtils::MakeMaker" => 0,
  "File::Find" => 0,
  "File::Spec" => 0,
  "File::Temp" => 0,
  "IPC::Run3" => 0,
  "List::Util" => 0,
  "Moo" => 0,
  "Pod::Usage" => 0,
  "Test::Deep" => 0,
  "Test::More" => 0,
  "Try::Tiny" => 0,
  "YAML::PP" => 0,
  "strict" => 0,
  "warnings" => 0
);


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

scripts.bare/dex  view on Meta::CPAN

#!/usr/bin/env perl
use warnings;
use strict;
use App::Dex;
use Pod::Usage qw(pod2usage);
use Try::Tiny;

if ( @ARGV && ( $ARGV[0] eq '--help' || $ARGV[0] eq '-h' ) ) {
    pod2usage( -verbose => 2 );
}

my $app = App::Dex->new;

# Throw an error if we couldn't find a config file.
try { $app->config_file } catch { die "Error: No config file found.\n" };

scripts/dex  view on Meta::CPAN

  };
}

unshift @INC, bless \%fatpacked, $class;
  } # END OF FATPACK CODE

use warnings;
use strict;
use App::Dex;
use Pod::Usage qw(pod2usage);
use Try::Tiny;

if ( @ARGV && ( $ARGV[0] eq '--help' || $ARGV[0] eq '-h' ) ) {
    pod2usage( -verbose => 2 );
}

my $app = App::Dex->new;

# Throw an error if we couldn't find a config file.
try { $app->config_file } catch { die "Error: No config file found.\n" };

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

                                      'Test::Pod' => '1.41',
                                      'perl' => '5.006'
                                    }
                    },
       'runtime' => {
                      'requires' => {
                                      'IPC::Run3' => '0',
                                      'List::Util' => '0',
                                      'Moo' => '0',
                                      'Pod::Usage' => '0',
                                      'Try::Tiny' => '0',
                                      'YAML::PP' => '0',
                                      'strict' => '0',
                                      'warnings' => '0'
                                    }
                    },
       'test' => {
                   'recommends' => {
                                     'CPAN::Meta' => '2.120900'
                                   },
                   'requires' => {



( run in 0.409 second using v1.01-cache-2.11-cpan-05444aca049 )