The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
NAME
    ExtUtils::BundleMaker - Supports making bundles of modules recursively

SYNOPSIS
        use ExtUtils::BundleMaker;

        my $eu_bm = ExtUtils::BundleMaker->new(
            modules => [ 'Important::One', 'Mandatory::Dependency' ],
            # down to which perl version core modules shall be included?
            recurse => 'v5.10',
            target => 'inc/bundle.inc',
        );
        # create bundle
        $eu_bm->make_bundle();

DESCRIPTION
    ExtUtils::BundleMaker is designed to support authors automatically
    create a bundle of important prerequisites which aren't needed outside
    of the distribution but might interfere or overload target.

    Because of no dependencies are recorded within a distribution, entire
    distributions of recorded dependencies are bundled.

ATTRIBUTES
    Following attributes are supported by ExtUtils::BundleMaker

  modules
    Specifies name of module(s) to create bundle for

  target
    Specifies target for bundle

  recurse
    Specify the Perl core version to recurse until.

METHODS
  make_bundle
AUTHOR
    Jens Rehsack, "<rehsack at cpan.org>"

BUGS
    Please report any bugs or feature requests to "bug-extutils-bundlemaker
    at rt.cpan.org", or through the web interface at
    <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=ExtUtils-BundleMaker>. I
    will be notified, and then you'll automatically be notified of progress
    on your bug as I make changes.

SUPPORT
    You can find documentation for this module with the perldoc command.

        perldoc ExtUtils::BundleMaker

    You can also look for information at:

    *   RT: CPAN's request tracker (report bugs here)

        <http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-BundleMaker>

    *   AnnoCPAN: Annotated CPAN documentation

        <http://annocpan.org/dist/ExtUtils-BundleMaker>

    *   CPAN Ratings

        <http://cpanratings.perl.org/d/ExtUtils-BundleMaker>

    *   Search CPAN

        <http://search.cpan.org/dist/ExtUtils-BundleMaker/>

ACKNOWLEDGEMENTS
LICENSE AND COPYRIGHT
    Copyright 2014 Jens Rehsack.

    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.