Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a LICENSE file with the same license as perl has #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Empty file modified Changes 100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion Diver.pm 100755 → 100644
Expand Up @@ -4,7 +4,7 @@ use strict;
require Exporter;
use vars qw( $VERSION @EXPORT_OK );
BEGIN {
$VERSION= 1.01_01;
$VERSION= 1.01_02;
@EXPORT_OK= qw( Dive DiveRef DiveVal DiveError DiveDie DiveClear );
*import= \&Exporter::import;
*isa= \&UNIVERSAL::isa;
Expand Down
1 change: 1 addition & 0 deletions LICENSE
@@ -0,0 +1 @@
You can use Data::Diver under the same terms as Perl itself.
1 change: 1 addition & 0 deletions MANIFEST 100755 → 100644
Expand Up @@ -5,3 +5,4 @@ MANIFEST
README
t/base.t
META.yml
META.json Module JSON meta-data (added by MakeMaker)
30 changes: 21 additions & 9 deletions META.yml 100755 → 100644
@@ -1,10 +1,22 @@
# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
name: Data-Diver
version: 1.00_02
version_from: Diver.pm
installdirs: site
---
abstract: unknown
author:
- 'Tye McQueen <tyemq@cpan.org>'
build_requires:
ExtUtils::MakeMaker: 0
configure_requires:
ExtUtils::MakeMaker: 0
dynamic_config: 1
generated_by: 'ExtUtils::MakeMaker version 6.6302, CPAN::Meta::Converter version 2.120630'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
name: Data-Diver
no_index:
directory:
- t
- inc
requires:

distribution_type: module
generated_by: ExtUtils::MakeMaker version 6.17
Test::More: 0
version: 1.0102
9 changes: 9 additions & 0 deletions Makefile.PL
@@ -1,7 +1,16 @@
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.

eval "use Test::Manifest 1.21";

WriteMakefile(
'NAME' => 'Data::Diver',
'VERSION_FROM' => 'Diver.pm', # finds $VERSION
'LICENSE' => 'perl_5',
'AUTHOR' => 'Tye McQueen <tyemq@cpan.org>',

'PREREQ_PM' => {
'Test::More' => '0',
},
);
12 changes: 12 additions & 0 deletions README
@@ -0,0 +1,12 @@
You can install this using in the usual Perl fashion

perl Makefile.PL
make
make test
make install

The documentation is in the module file. Once you install
the file, you can read it with perldoc.

perldoc Data::Diver

Empty file modified t/base.t 100755 → 100644
Empty file.