App-Pmhack
view release on metacpan or search on metacpan
---
abstract: 'Hack on installed Perl modules'
author:
- 'Peter Shangov <pshangov@yahoo.com>'
build_requires:
File::Slurp: 0
File::Spec: 0
File::Temp: 0
FindBin: 0
Test::Differences: 0
Test::More: 0
configure_requires:
ExtUtils::MakeMaker: 6.31
dynamic_config: 0
generated_by: 'Dist::Zilla version 4.102340, CPAN::Meta::Converter version 2.101670'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
name: App-Pmhack
Makefile.PL view on Meta::CPAN
my %WriteMakefileArgs = (
'ABSTRACT' => 'Hack on installed Perl modules',
'AUTHOR' => 'Peter Shangov <pshangov@yahoo.com>',
'BUILD_REQUIRES' => {
'File::Slurp' => '0',
'File::Spec' => '0',
'File::Temp' => '0',
'FindBin' => '0',
'Test::Differences' => '0',
'Test::More' => '0'
},
'CONFIGURE_REQUIRES' => {
'ExtUtils::MakeMaker' => '6.31'
},
'DISTNAME' => 'App-Pmhack',
'EXE_FILES' => [
'bin/pmhack'
],
'LICENSE' => 'perl',
t/01-basic.t view on Meta::CPAN
#perl
use strict;
use warnings;
use Test::More tests => 3;
use Test::Differences;
use FindBin;
use File::Temp qw(tempdir);
use File::Spec;
use File::Slurp qw(slurp);
use Try::Tiny;
use App::Pmhack qw(pmhack);
# setup
my $lib = File::Spec->catdir($FindBin::Bin, 'lib');
my $original_filename = File::Spec->catfile($lib, qw( App Pmhack Test.pm ));
( run in 0.951 second using v1.01-cache-2.11-cpan-6aa56a78535 )