summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-07-21 11:59:13 -0400
committerJesse Luehrs <doy@tozt.net>2013-07-21 11:59:13 -0400
commit86e3d17b0c3411579c8f8e3084a82af9a2048201 (patch)
treef37f787ea581ab92fa82b3a4894d54d5923ec8c2
parentc1491b58f65fe478815bf9e312371a73ea58039b (diff)
downloadparse-keyword-86e3d17b0c3411579c8f8e3084a82af9a2048201.tar.gz
parse-keyword-86e3d17b0c3411579c8f8e3084a82af9a2048201.zip
stub out docs to make pod coverage pass
-rw-r--r--lib/Parse/Keyword.pm67
1 files changed, 67 insertions, 0 deletions
diff --git a/lib/Parse/Keyword.pm b/lib/Parse/Keyword.pm
index c981071..5055e0e 100644
--- a/lib/Parse/Keyword.pm
+++ b/lib/Parse/Keyword.pm
@@ -12,6 +12,24 @@ XSLoader::load(
exists $Parse::Keyword::{VERSION} ? ${ $Parse::Keyword::{VERSION} } : (),
);
+=head1 SYNOPSIS
+
+=head1 DESCRIPTION
+
+=cut
+
+=func lex_peek
+
+=func lex_read
+
+=func lex_read_space
+
+=func parse_block
+
+=func compiling_package
+
+=cut
+
sub import {
my $package = shift;
my ($keywords) = @_;
@@ -40,4 +58,53 @@ sub import {
}
}
+=head1 BUGS
+
+No known bugs.
+
+Please report any bugs to GitHub Issues at
+L<https://github.com/doy/parse-keyword/issues>.
+
+=head1 SEE ALSO
+
+L<Devel::Declare>
+
+L<Devel::CallParser>
+
+=head1 SUPPORT
+
+You can find this documentation for this module with the perldoc command.
+
+ perldoc Parse::Keyword
+
+You can also look for information at:
+
+=over 4
+
+=item * MetaCPAN
+
+L<https://metacpan.org/release/Parse-Keyword>
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Parse-Keyword>
+
+=item * Github
+
+L<https://github.com/doy/parse-keyword>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/Parse-Keyword>
+
+=back
+
+=begin Pod::Coverage
+
+ install_keyword_handler
+
+=end Pod::Coverage
+
+=cut
+
1;