App-Wax

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

         "requires" : {
            "Digest::SHA" : "0",
            "File::BaseDir" : "0.08",
            "File::Slurper" : "0.012",
            "IPC::System::Simple" : "1.30",
            "LWP" : "6.46",
            "MIME::Types" : "2.17",
            "Method::Signatures::Simple" : "1.07",
            "Mouse" : "v2.5.10",
            "Parallel::parallel_map" : "0.02",
            "Try::Tiny" : "0.30",
            "URI" : "1.76",
            "perl" : "5.008008",
            "version" : "0.77"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "bugtracker" : {
         "web" : "https://github.com/chocolateboy/wax/issues"

META.yml  view on Meta::CPAN

requires:
  Digest::SHA: '0'
  File::BaseDir: '0.08'
  File::Slurper: '0.012'
  IPC::System::Simple: '1.30'
  LWP: '6.46'
  MIME::Types: '2.17'
  Method::Signatures::Simple: '1.07'
  Mouse: v2.5.10
  Parallel::parallel_map: '0.02'
  Try::Tiny: '0.30'
  URI: '1.76'
  perl: '5.008008'
  version: '0.77'
resources:
  bugtracker: https://github.com/chocolateboy/wax/issues
  repository: https://github.com/chocolateboy/wax
version: v2.4.1
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

Makefile.PL  view on Meta::CPAN

    PREREQ_PM      => {
        'Digest::SHA'                => '0',
        'File::BaseDir'              => '0.08',
        'File::Slurper'              => '0.012',
        'IPC::System::Simple'        => '1.30',
        'LWP'                        => '6.46',
        'Method::Signatures::Simple' => '1.07',
        'MIME::Types'                => '2.17',
        'Mouse'                      => 'v2.5.10',
        'Parallel::parallel_map'     => '0.02',
        'Try::Tiny'                  => '0.30',
        'URI'                        => '1.76',
        'version'                    => '0.77',
    },
    ($EUMM_VERSION >= 6.5503 ? (BUILD_REQUIRES => $TEST_REQUIRES) : ()),
    ($EUMM_VERSION >= 6.31 ? (LICENSE => 'artistic_2') : ()),
    ($EUMM_VERSION >= 6.46 ? (META_MERGE => $META_MERGE) : ()),
    ($EUMM_VERSION >= 6.48 ? (MIN_PERL_VERSION => '5.8.8') : ()), # LWP's minimum
);

lib/App/Wax.pm  view on Meta::CPAN

use File::Spec;
use File::Temp;
use Getopt::Long qw(GetOptionsFromArray :config posix_default require_order bundling no_auto_abbrev no_ignore_case);
use IPC::System::Simple qw(EXIT_ANY $EXITVAL systemx);
use LWP::UserAgent;
use Method::Signatures::Simple;
use MIME::Types;
use Mouse;
use Parallel::parallel_map qw(parallel_map);
use Pod::Usage qw(pod2usage);
use Try::Tiny qw(try catch);
use URI::Split qw(uri_split);

# NOTE this is the version of the *command* rather than the *module*, i.e.
# breaking API changes may occur here which aren't reflected in the SemVer since
# they don't break the behavior of the command
#
# XXX this declaration must be on a single line
# https://metacpan.org/pod/version#How-to-declare()-a-dotted-decimal-version
use version; our $VERSION = version->declare('v2.4.1');



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