Skip to content

Commit

Permalink
v0.001
Browse files Browse the repository at this point in the history
  - Initial release
  • Loading branch information
rwstauner committed Aug 4, 2012
1 parent b29ba10 commit 8bbe124
Show file tree
Hide file tree
Showing 2 changed files with 143 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Changes
Expand Up @@ -2,4 +2,6 @@ Revision history for Perl-PrereqScanner-Scanner-MooseXTypesCombine

{{$NEXT}}

0.001 2012-08-04T05:35:10Z

- Initial release
144 changes: 141 additions & 3 deletions README.pod
@@ -1,6 +1,145 @@
=head1 Perl::PrereqScanner::Scanner::MooseXTypesCombine
=encoding utf-8

See module POD for more information.
=for :stopwords Randy Stauner ACKNOWLEDGEMENTS cpan testmatrix url annocpan anno bugtracker
rt cpants kwalitee diff irc mailto metadata placeholders metacpan

=head1 NAME

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

=head1 VERSION

version 0.001

=head1 SYNOPSIS

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

Or with L<Dist::Zilla::Plugin::AutoPrereqs>:

# dist.ini
[AutoPrereqs]
extra_scanners = MooseXTypesCombine

=head1 DESCRIPTION

This scanner will look for L<MooseX::Types> libraries
exported via L<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.

=for Pod::Coverage scan_for_prereqs

=head1 SEE ALSO

=over 4

=item *

L<Perl::PrereqScanner>

=item *

L<Dist::Zilla::Plugin::AutoPrereqs>

=item *

L<MooseX::Types::Combine>

=back

=head1 SUPPORT

=head2 Perldoc

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

perldoc Perl::PrereqScanner::Scanner::MooseXTypesCombine

=head2 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.

=over 4

=item *

Search CPAN

The default CPAN search engine, useful to view POD in HTML format.

L<http://search.cpan.org/dist/Perl-PrereqScanner-Scanner-MooseXTypesCombine>

=item *

RT: CPAN's Bug Tracker

The RT ( Request Tracker ) website is the default bug/issue tracking system for CPAN.

L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Perl-PrereqScanner-Scanner-MooseXTypesCombine>

=item *

CPAN Ratings

The CPAN Ratings is a website that allows community ratings and reviews of Perl modules.

L<http://cpanratings.perl.org/d/Perl-PrereqScanner-Scanner-MooseXTypesCombine>

=item *

CPAN Testers

The CPAN Testers is a network of smokers who run automated tests on uploaded CPAN distributions.

L<http://www.cpantesters.org/distro/P/Perl-PrereqScanner-Scanner-MooseXTypesCombine>

=item *

CPAN Testers Matrix

The CPAN Testers Matrix is a website that provides a visual overview of the test results for a distribution on various Perls/platforms.

L<http://matrix.cpantesters.org/?dist=Perl-PrereqScanner-Scanner-MooseXTypesCombine>

=item *

CPAN Testers Dependencies

The CPAN Testers Dependencies is a website that shows a chart of the test results of all dependencies for a distribution.

L<http://deps.cpantesters.org/?module=Perl::PrereqScanner::Scanner::MooseXTypesCombine>

=back

=head2 Bugs / Feature Requests

Please report any bugs or feature requests by email to C<bug-perl-prereqscanner-scanner-moosextypescombine at rt.cpan.org>, or through
the web interface at L<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.

=head2 Source Code


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

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

=head1 AUTHOR

Randy Stauner <rwstauner@cpan.org>

=head1 COPYRIGHT AND LICENSE

Expand All @@ -9,4 +148,3 @@ 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.

=cut

0 comments on commit 8bbe124

Please sign in to comment.