The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Perl::PrereqScanner::Scanner::MooseXTypesCombine - Scan for type libraries exported with MooseX::Types::Combine

VERSION

version 0.001

SYNOPSIS

  Perl::PrereqScanner->new( extra_scanners => ['MooseXTypesCombine'] );

Or with Dist::Zilla::Plugin::AutoPrereqs:

  # dist.ini
  [AutoPrereqs]
  extra_scanners = MooseXTypesCombine

DESCRIPTION

This scanner will look for MooseX::Types libraries exported via MooseX::Types::Combine.

It is currently very naive and very specific but works for simple cases like this:

  package MyTypes;
  use parent 'MooseX::Types::Combine';

  __PACKAGE__->provide_types_from(qw(
    MooseX::Types::Moose
    MooseX::Types::Path::Class
  ));

As always patches and bug reports are welcome.

SEE ALSO

SUPPORT

Perldoc

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

  perldoc Perl::PrereqScanner::Scanner::MooseXTypesCombine

Websites

The following websites have more information about this module, and may be of help to you. As always, in addition to those websites please use your favorite search engine to discover more resources.

Bugs / Feature Requests

Please report any bugs or feature requests by email to bug-perl-prereqscanner-scanner-moosextypescombine at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Perl-PrereqScanner-Scanner-MooseXTypesCombine. You will be automatically notified of any progress on the request by the system.

Source Code

https://github.com/rwstauner/Perl-PrereqScanner-Scanner-MooseXTypesCombine

  git clone https://github.com/rwstauner/Perl-PrereqScanner-Scanner-MooseXTypesCombine.git

AUTHOR

Randy Stauner <rwstauner@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by Randy Stauner.

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