Acme-CPANModules-PERLANCAR-Dummy

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

     | module                    | bar *1) | baz *2) | foo *3) |
     +---------------------------+---------+---------+---------+
     | App::Trrr                 | N/A *4) | value1  | N/A *4) |
     | App::Wax                  | yes     | N/A     | yes     |
     | App::cpangrep             | no      | N/A     | no      |
     | Acme::PPIx::MetaSyntactic | no      | N/A     | yes     |
     +---------------------------+---------+---------+---------+

    Notes:

    1. bar: Bar feature (bool)
    2. baz: Baz feature (string)
    3. foo: Foo feature (bool)
    4. Some note

FAQ
  What is an Acme::CPANModules::* module?
    An Acme::CPANModules::* module, like this module, contains just a list
    of module names that share a common characteristics. It is a way to
    categorize modules and document CPAN. See Acme::CPANModules for more
    details.

  What are ways to use this Acme::CPANModules module?

README  view on Meta::CPAN

    required beyond that are considered a bug and can be reported to me.

COPYRIGHT AND LICENSE
    This software is copyright (c) 2023, 2021 by perlancar
    <perlancar@cpan.org>.

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

BUGS
    Please report any bugs or feature requests on the bugtracker website
    <https://rt.cpan.org/Public/Dist/Display.html?Name=Acme-CPANModules-PERL
    ANCAR-Dummy>

    When submitting a bug or request, please include a test-file or a patch
    to an existing test-file that illustrates the bug or desired feature.

lib/Acme/CPANModules/PERLANCAR/Dummy.pm  view on Meta::CPAN


use strict;

our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2023-10-31'; # DATE
our $DIST = 'Acme-CPANModules-PERLANCAR-Dummy'; # DIST
our $VERSION = '0.002'; # VERSION

our $LIST = {
    summary => 'List of some modules (a dummy Acme::CPANModules list for various testing)',
    entry_features => {
        foo => {summary=>'Foo feature (bool)'},
        bar => {summary=>'Bar feature (bool)'},
        baz => {summary=>'Baz feature (string)', schema=>'str*'},
    },
    entries => [
        {
            module => "App::Trrr",
            features => {
                foo => {value=>undef, summary=>'Some note'},
                bar => {value=>undef, summary=>'Some note'},
                baz => 'value1',
            },
        },
        {
            module => "App::Wax",
            features => {foo=>1, bar=>1}},
        {
            module => "App::cpangrep",
            features => {foo=>0, bar=>0},
        },
        {
            module => "Acme::PPIx::MetaSyntactic",
            features => {foo=>1, bar=>0},
        },
    ],
};

1;
# ABSTRACT: List of some modules (a dummy Acme::CPANModules list for various testing)

__END__

=pod

lib/Acme/CPANModules/PERLANCAR/Dummy.pm  view on Meta::CPAN

 | App::Wax                  | yes     | N/A     | yes     |
 | App::cpangrep             | no      | N/A     | no      |
 | Acme::PPIx::MetaSyntactic | no      | N/A     | yes     |
 +---------------------------+---------+---------+---------+


Notes:

=over

=item 1. bar: Bar feature (bool)

=item 2. baz: Baz feature (string)

=item 3. foo: Foo feature (bool)

=item 4. Some note

=back

=head1 FAQ

=head2 What is an Acme::CPANModules::* module?

An Acme::CPANModules::* module, like this module, contains just a list of module

lib/Acme/CPANModules/PERLANCAR/Dummy.pm  view on Meta::CPAN


=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2023, 2021 by perlancar <perlancar@cpan.org>.

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

=head1 BUGS

Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=Acme-CPANModules-PERLANCAR-Dummy>

When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.

=cut



( run in 0.248 second using v1.01-cache-2.11-cpan-05444aca049 )