Skip to content

Commit

Permalink
Committing initial version of JCVI::Translator for migration
Browse files Browse the repository at this point in the history
  • Loading branch information
kgalinsky committed Oct 28, 2009
0 parents commit efda1fe
Show file tree
Hide file tree
Showing 10 changed files with 1,915 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Revision history for JCVI-Translator

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

10 changes: 10 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Changes
MANIFEST
META.yml # Will be created by "make dist"
Makefile.PL
README
lib/JCVI/Translator.pm
t/00-load.t
t/boilerplate.t
t/pod-coverage.t
t/pod.t
16 changes: 16 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
NAME => 'JCVI::Translator',
AUTHOR => 'Kevin Galinsky <[email protected]>',
VERSION_FROM => 'lib/JCVI/Translator.pm',
ABSTRACT_FROM => 'lib/JCVI/Translator.pm',
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'JCVI-Translator-*' },
);
49 changes: 49 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
JCVI-Translator

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 get an idea of the modules 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 JCVI::Translator

You can also look for information at:

Search CPAN
http://search.cpan.org/dist/JCVI-Translator

CPAN Request Tracker:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=JCVI-Translator

AnnoCPAN, annotated CPAN documentation:
http://annocpan.org/dist/JCVI-Translator

CPAN Ratings:
http://cpanratings.perl.org/d/JCVI-Translator

COPYRIGHT AND LICENCE

Copyright (C) 2008 Kevin Galinsky

This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
Loading

0 comments on commit efda1fe

Please sign in to comment.