Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
nicwolff committed Dec 4, 2011
0 parents commit b22ac10
Show file tree
Hide file tree
Showing 9 changed files with 844 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Makefile
pm_to_blib
blib/**/*
5 changes: 5 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Revision history for HTML-DataTable

0.01 Date/time
First version, released on an unsuspecting world.

7 changes: 7 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Changes
lib/HTML/DataTable.pm
lib/HTML/DataTable/DBI.pm
Makefile.PL
MANIFEST This list of files
README
t/00-load.t
20 changes: 20 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
NAME => 'HTML::DataTable',
AUTHOR => q{Nic Wolff <nic@angel.net>},
VERSION_FROM => 'lib/HTML/DataTable.pm',
ABSTRACT_FROM => 'lib/HTML/DataTable.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'HTML-DataTable-*' },
);
55 changes: 55 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
HTML-DataTable

The README is used to introduce the module and provide instructions on
how to install the module, any machine dependencies it may have (for
example C compilers and installed libraries) and any other information
that should be provided before the module is installed.

A README file is required for CPAN modules since CPAN extracts the README
file from a module distribution so that people browsing the archive
can use it to get an idea of the module's uses. It is usually a good idea
to provide version information here so that people can decide whether
fixes for the module are worth downloading.


INSTALLATION

To install this module, run the following commands:

perl Makefile.PL
make
make test
make install

SUPPORT AND DOCUMENTATION

After installing, you can find documentation for this module with the
perldoc command.

perldoc HTML::DataTable

You can also look for information at:

RT, CPAN's request tracker (report bugs here)
http://rt.cpan.org/NoAuth/Bugs.html?Dist=HTML-DataTable

AnnoCPAN, Annotated CPAN documentation
http://annocpan.org/dist/HTML-DataTable

CPAN Ratings
http://cpanratings.perl.org/d/HTML-DataTable

Search CPAN
http://search.cpan.org/dist/HTML-DataTable/


LICENSE AND COPYRIGHT

Copyright (C) 2011 Nic Wolff

This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.

13 changes: 13 additions & 0 deletions ignore.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.git
blib*
Makefile
Makefile.old
Build
Build.bat
_build*
pm_to_blib*
*.tar.gz
.lwpcookies
cover_db
pod2htm*.tmp
HTML-DataTable-*
Loading

0 comments on commit b22ac10

Please sign in to comment.