Lines Matching full:pod
10 #pod =head1 DESCRIPTION
11 #pod
12 #pod A CPAN::Meta::Feature object describes an optional feature offered by a CPAN
13 #pod distribution and specified in the distribution's F<META.json> (or F<META.yml>)
14 #pod file.
15 #pod
16 #pod For the most part, this class will only be used when operating on the result of
17 #pod the C<feature> or C<features> methods on a L<CPAN::Meta> object.
18 #pod
19 #pod =method new
20 #pod
21 #pod my $feature = CPAN::Meta::Feature->new( $identifier => \%spec );
22 #pod
23 #pod This returns a new Feature object. The C<%spec> argument to the constructor
24 #pod should be the same as the value of the C<optional_feature> entry in the
25 #pod distmeta. It must contain entries for C<description> and C<prereqs>.
26 #pod
27 #pod =cut
41 #pod =method identifier
42 #pod
43 #pod This method returns the feature's identifier.
44 #pod
45 #pod =cut
49 #pod =method description
50 #pod
51 #pod This method returns the feature's long description.
52 #pod
53 #pod =cut
57 #pod =method prereqs
58 #pod
59 #pod This method returns the feature's prerequisites as a L<CPAN::Meta::Prereqs>
60 #pod object.
61 #pod
62 #pod =cut
70 =pod