App-Padadoy

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

  File::Spec::Functions: 0
  Getopt::Long: 0
  Git::Repository: 0
  HTTP::Request::Common: 0
  IPC::System::Simple: 0
  List::Util: 0
  Plack::Handler::Starman: 0
  Plack::Test: 0
  Pod::Usage: 0
  Sys::Hostname: 0
  Try::Tiny: 0
  YAML::Any: 0
  autodie: 0
  perl: 5.010
  strict: 0
  warnings: 0
resources:
  bugtracker: https://github.com/nichtich/App-Padadoy/issues
  homepage: https://github.com/nichtich/App-Padadoy
  repository: https://github.com/nichtich/App-Padadoy.git
version: 0.125

Makefile.PL  view on Meta::CPAN

    "File::Spec::Functions" => 0,
    "Getopt::Long" => 0,
    "Git::Repository" => 0,
    "HTTP::Request::Common" => 0,
    "IPC::System::Simple" => 0,
    "List::Util" => 0,
    "Plack::Handler::Starman" => 0,
    "Plack::Test" => 0,
    "Pod::Usage" => 0,
    "Sys::Hostname" => 0,
    "Try::Tiny" => 0,
    "YAML::Any" => 0,
    "autodie" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "VERSION" => "0.125",
  "test" => {
    "TESTS" => "t/*.t"
  }
);

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

use strict;
use warnings;
package App::Padadoy;
{
  $App::Padadoy::VERSION = '0.125';
}
#ABSTRACT: Simply deploy PSGI applications

use 5.010;
use autodie;
use Try::Tiny;
use IPC::System::Simple qw(run capture $EXITVAL);
use File::Slurp;
use List::Util qw(max);
use File::ShareDir qw(dist_file);
use File::Path qw(make_path);
use File::Basename qw(dirname);
use File::Spec::Functions qw(catdir catfile rel2abs);
use Git::Repository;
use Sys::Hostname;
use YAML::Any qw(LoadFile Dump);



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