Skip to content

Commit

Permalink
Build results of 3ce9881 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Dec 18, 2010
1 parent 3ce9881 commit 419aa59
Show file tree
Hide file tree
Showing 21 changed files with 1,734 additions and 162 deletions.
2 changes: 0 additions & 2 deletions .gitignore

This file was deleted.

2 changes: 0 additions & 2 deletions .perltidyrc

This file was deleted.

45 changes: 45 additions & 0 deletions Build.PL
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;
4 changes: 1 addition & 3 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
Revision history for {{$dist->name}}

{{$NEXT}}
Revision history for Data-Handle

0.01011322 2010-12-18 23:14:03 Pacific/Auckland
First version.
Expand Down
377 changes: 377 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions MANIFEST
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
Loading

0 comments on commit 419aa59

Please sign in to comment.