Inline-Wrapper

Inline::Wrapper provides wrapper routines to make embedding another
language into a Perl application more convenient.

Instead of having to include the external code after __END__ in your Perl
source code, you can have separate, individually-configurable language
module directories to contain and organize all of your code.


Inline::Wrapper provides the following features:

* Transparent support for all languages supported by Inline.pm
* A single, unified interface for loading and running module functions.
* Loading of files containing pure source code, only in their respective
       languages, so you can isolate maintenance and management of these
       modules.
* Individually-configurable module directories.
* Automatic, run-time module reloading upon file modification time
       detection.
* No more namespace pollution.  All module symbols are loaded into their own
       individual, private namespaces, so they won't collide with your code
       or each other.


See the Changes file for release information.

INSTALLATION

To install this module, follow the standard CPAN mantra:

       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 Inline::Wrapper

You can also look for information at:

   RT, CPAN's request tracker
       http://rt.cpan.org/NoAuth/Bugs.html?Dist=Inline-Wrapper

   AnnoCPAN, Annotated CPAN documentation
       http://annocpan.org/dist/Inline-Wrapper

   CPAN Ratings
       http://cpanratings.perl.org/d/Inline-Wrapper

   Search CPAN
       http://search.cpan.org/dist/Inline-Wrapper/


COPYRIGHT AND LICENCE

Copyright (C) 2008 Jason McManus (INFIDEL) <[email protected]>

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