-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build results of 3ce9881 (on master)
- Loading branch information
1 parent
3ce9881
commit 419aa59
Showing
21 changed files
with
1,734 additions
and
162 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
|
||
use strict; | ||
use warnings; | ||
|
||
use Module::Build 0.3601; | ||
|
||
|
||
my %module_build_args = ( | ||
'build_requires' => { | ||
'English' => '0', | ||
'File::Find' => '0', | ||
'File::Temp' => '0', | ||
'Module::Build' => '0.3601', | ||
'Test::Fatal' => '0', | ||
'Test::More' => '0.96' | ||
}, | ||
'configure_requires' => { | ||
'Module::Build' => '0.3601' | ||
}, | ||
'dist_abstract' => 'A Very simple interface to the __DATA__ file handle.', | ||
'dist_author' => [ | ||
'Kent Fredric <kentnl@cpan.org>' | ||
], | ||
'dist_name' => 'Data-Handle', | ||
'dist_version' => '0.01011322', | ||
'license' => 'perl', | ||
'module_name' => 'Data::Handle', | ||
'recommends' => {}, | ||
'recursive_test_files' => 1, | ||
'requires' => { | ||
'Carp' => '0', | ||
'IO::File' => '0', | ||
'Package::Stash' => '0', | ||
'Scalar::Util' => '0', | ||
'Symbol' => '0', | ||
'overload' => '0', | ||
'parent' => '0' | ||
}, | ||
'script_files' => [] | ||
); | ||
|
||
|
||
my $build = Module::Build->new(%module_build_args); | ||
|
||
$build->create_build_script; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Build.PL | ||
Changes | ||
LICENSE | ||
MANIFEST | ||
META.json | ||
META.yml | ||
README | ||
dist.ini | ||
lib/Data/Handle.pm | ||
lib/Data/Handle/Exception.pm | ||
lib/Data/Handle/IO.pm | ||
perlcritic.rc | ||
t/00-compile.t | ||
t/000-report-versions-tiny.t | ||
t/01_lowlevel.t | ||
t/02_example.t | ||
t/author-critic.t | ||
t/lib/Data.pm | ||
t/lib/SectionData.pm | ||
t/release-distmeta.t | ||
t/release-eol.t | ||
t/release-kwalitee.t | ||
t/release-pod-coverage.t | ||
t/release-pod-syntax.t | ||
t/release-portability.t | ||
weaver.ini |
Oops, something went wrong.