App-Wax

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

         "requires" : {
            "Digest::SHA" : "0",
            "File::BaseDir" : "0.09",
            "File::Slurper" : "0.014",
            "Function::Parameters" : "2.002005",
            "IPC::System::Simple" : "1.30",
            "LWP" : "6.79",
            "MIME::Types" : "2.28",
            "Mouse" : "v2.5.11",
            "Parallel::parallel_map" : "0.03",
            "Try::Tiny" : "0.32",
            "URI" : "5.32",
            "perl" : "5.014000",
            "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.09'
  File::Slurper: '0.014'
  Function::Parameters: '2.002005'
  IPC::System::Simple: '1.30'
  LWP: '6.79'
  MIME::Types: '2.28'
  Mouse: v2.5.11
  Parallel::parallel_map: '0.03'
  Try::Tiny: '0.32'
  URI: '5.32'
  perl: '5.014000'
  version: '0.77'
resources:
  bugtracker: https://github.com/chocolateboy/wax/issues
  repository: https://github.com/chocolateboy/wax
version: v2.5.0
x_serialization_backend: 'CPAN::Meta::YAML version 0.020'

Makefile.PL  view on Meta::CPAN

    PREREQ_PM      => {
        'Digest::SHA'                => '0',
        'File::BaseDir'              => '0.09',
        'File::Slurper'              => '0.014',
        'Function::Parameters'       => '2.002005',
        'IPC::System::Simple'        => '1.30',
        'LWP'                        => '6.79',
        'MIME::Types'                => '2.28',
        'Mouse'                      => 'v2.5.11',
        'Parallel::parallel_map'     => '0.03',
        'Try::Tiny'                  => '0.32',
        'URI'                        => '5.32',
        '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.14.0') : ()),
);

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

use File::Spec;
use File::Temp;
use Function::Parameters qw(fun method);
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 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.5.0');



( run in 0.501 second using v1.01-cache-2.11-cpan-bfdf9f6cde5 )