r61091@onn: sartak | 2008-05-26 21:32:50 -0400
Sartak [Tue, 27 May 2008 01:33:13 +0000 (01:33 +0000)]
 Give "NAME" pod sections to all the plugins

git-svn-id: http://dev.catalyst.perl.org/repos/bast/trunk/Devel-REPL@4417 bd8105ee-0ff8-0310-8827-fb3f25b6796d

21 files changed:
lib/Devel/REPL/Plugin/Commands.pm
lib/Devel/REPL/Plugin/Completion.pm
lib/Devel/REPL/Plugin/CompletionDriver/Globals.pm
lib/Devel/REPL/Plugin/CompletionDriver/INC.pm
lib/Devel/REPL/Plugin/CompletionDriver/Keywords.pm
lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm
lib/Devel/REPL/Plugin/CompletionDriver/Methods.pm
lib/Devel/REPL/Plugin/CompletionDriver/Turtles.pm
lib/Devel/REPL/Plugin/DDS.pm
lib/Devel/REPL/Plugin/FindVariable.pm
lib/Devel/REPL/Plugin/History.pm
lib/Devel/REPL/Plugin/Interrupt.pm
lib/Devel/REPL/Plugin/LexEnv.pm
lib/Devel/REPL/Plugin/NewlineHack.pm
lib/Devel/REPL/Plugin/Nopaste.pm
lib/Devel/REPL/Plugin/Packages.pm
lib/Devel/REPL/Plugin/ReadLineHistory.pm
lib/Devel/REPL/Plugin/Refresh.pm
lib/Devel/REPL/Plugin/ShowClass.pm
lib/Devel/REPL/Plugin/Timing.pm
lib/Devel/REPL/Plugin/Turtles.pm

index 953009c..a4c8fcf 100644 (file)
@@ -62,3 +62,12 @@ around 'compile' => sub {
 };
 
 1;
+
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::Commands - Generic command creation plugin using injected functions
+
+=cut
+
index 8fbe2bc..a9ffb0c 100644 (file)
@@ -90,3 +90,11 @@ sub last_ppi_element {
 
 1;
 
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::Completion - Extensible tab completion
+
+=cut
+
index 98f3443..df2f900 100644 (file)
@@ -50,3 +50,11 @@ around complete => sub {
 
 1;
 
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::CompletionDriver::Globals - Complete global variables, packages, namespaced functions
+
+=cut
+
index 6b882dd..a47bc96 100644 (file)
@@ -115,3 +115,11 @@ around complete => sub {
 
 1;
 
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::CompletionDriver::INC - Complete module names in use and require
+
+=cut
+
index a897eca..f917163 100644 (file)
@@ -26,3 +26,11 @@ around complete => sub {
 
 1;
 
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::CompletionDriver::Keywords - Complete Perl keywords and operators
+
+=cut
+
index f346bda..8fb5d0f 100644 (file)
@@ -32,3 +32,11 @@ around complete => sub {
 
 1;
 
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::CompletionDriver::LexEnv - Complete variable names in the REPL's lexical environment
+
+=cut
+
index f9d4e60..aa09f0e 100644 (file)
@@ -58,4 +58,11 @@ around complete => sub {
 
 1;
 
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::CompletionDriver::Methods - Complete class or object method names
+
+=cut
 
index 940bbff..ce0f3ed 100644 (file)
@@ -38,4 +38,9 @@ __PACKAGE__
 
 __END__
 
+=head1 NAME
+
+Devel::REPL::Plugin::CompletionDriver::Turtles - Complete Turtles-based commands
+
+=cut
 
index 457ec69..50464e0 100644 (file)
@@ -20,3 +20,12 @@ around 'format_result' => sub {
 };
 
 1;
+
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::DDS - Format results with Data::Dump::Streamer
+
+=cut
+
index 6dbf4ca..4b9c012 100644 (file)
@@ -27,3 +27,11 @@ sub find_variable {
 
 1;
 
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::FindVariable - Finds variables by name
+
+=cut
+
index d95ff07..5cbff25 100644 (file)
@@ -50,3 +50,12 @@ sub history_call {
 };
 
 1;
+
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::History - Keep track of all input, provide shortcuts !1, !-1
+
+=cut
+
index 1d79bd8..d983022 100644 (file)
@@ -16,3 +16,11 @@ around 'eval' => sub {
 
 1;
 
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::Interrupt - traps SIGINT to kill long-running lines
+
+=cut
+
index 4a272d1..626bafd 100644 (file)
@@ -58,3 +58,12 @@ around 'execute' => sub {
 #};
 
 1;
+
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::LexEnv - Provide a lexical environment for the REPL
+
+=cut
+
index 1945199..74b852a 100644 (file)
@@ -18,3 +18,11 @@ EOW
 
 1;
 
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::NewlineHack - (deprecated)
+
+=cut
+
index 7bd925e..18ef7be 100644 (file)
@@ -51,3 +51,11 @@ sub command_nopaste {
 
 1;
 
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::Nopaste - #nopaste to upload session's input and output
+
+=cut
+
index 9fb14ba..14c0f60 100644 (file)
@@ -49,3 +49,12 @@ package Devel::REPL::Plugin::Packages::DefaultScratchpad;
 # declare empty scratchpad package for cleanliness
 
 1;
+
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::Packages - Keep track of which package the user is in
+
+=cut
+
index 051e37d..f3f46bc 100644 (file)
@@ -27,3 +27,11 @@ around 'run' => sub {
 
 1;
 
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::ReadLineHistory - Integrate history with the facilities provided by L<Term::ReadLine>
+
+=cut
+
index adcfae8..93f7eab 100644 (file)
@@ -18,3 +18,12 @@ around 'eval' => sub {
 };
 
 1;
+
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::Refresh - reload libraries with Module::Refresh
+
+=cut
+
index 0697291..309fed2 100644 (file)
@@ -67,3 +67,11 @@ sub display_class {
 
 1;
 
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::ShowClass - Dump classes initialized with Class::MOP
+
+=cut
+
index 13f47d0..a445bb6 100644 (file)
@@ -24,3 +24,11 @@ around 'eval' => sub {
 
 1;
 
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::Timing - display execution times
+
+=cut
+
index 8bcba92..c412237 100644 (file)
@@ -67,3 +67,12 @@ sub match_turtles {
 }
 
 1;
+
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::Turtles - Generic command creation using a read hook
+
+=cut
+