[Bast-commits] r4417 - in trunk/Devel-REPL: . lib/Devel/REPL/Plugin
lib/Devel/REPL/Plugin/CompletionDriver
Sartak at dev.catalyst.perl.org
Sartak at dev.catalyst.perl.org
Tue May 27 02:33:14 BST 2008
Author: Sartak
Date: 2008-05-27 02:33:13 +0100 (Tue, 27 May 2008)
New Revision: 4417
Modified:
trunk/Devel-REPL/
trunk/Devel-REPL/lib/Devel/REPL/Plugin/Commands.pm
trunk/Devel-REPL/lib/Devel/REPL/Plugin/Completion.pm
trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/Globals.pm
trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/INC.pm
trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/Keywords.pm
trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm
trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/Methods.pm
trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/Turtles.pm
trunk/Devel-REPL/lib/Devel/REPL/Plugin/DDS.pm
trunk/Devel-REPL/lib/Devel/REPL/Plugin/FindVariable.pm
trunk/Devel-REPL/lib/Devel/REPL/Plugin/History.pm
trunk/Devel-REPL/lib/Devel/REPL/Plugin/Interrupt.pm
trunk/Devel-REPL/lib/Devel/REPL/Plugin/LexEnv.pm
trunk/Devel-REPL/lib/Devel/REPL/Plugin/NewlineHack.pm
trunk/Devel-REPL/lib/Devel/REPL/Plugin/Nopaste.pm
trunk/Devel-REPL/lib/Devel/REPL/Plugin/Packages.pm
trunk/Devel-REPL/lib/Devel/REPL/Plugin/ReadLineHistory.pm
trunk/Devel-REPL/lib/Devel/REPL/Plugin/Refresh.pm
trunk/Devel-REPL/lib/Devel/REPL/Plugin/ShowClass.pm
trunk/Devel-REPL/lib/Devel/REPL/Plugin/Timing.pm
trunk/Devel-REPL/lib/Devel/REPL/Plugin/Turtles.pm
Log:
r61091 at onn: sartak | 2008-05-26 21:32:50 -0400
Give "NAME" pod sections to all the plugins
Property changes on: trunk/Devel-REPL
___________________________________________________________________
Name: svk:merge
- 08e7d58d-de06-4458-8c15-335e402ab116:/local/Devel-REPL:61087
6d2a1d83-d666-409f-9dbf-d3bfcf4e9009:/local/bast/broken_internets/Devel-REPL:80567
+ 08e7d58d-de06-4458-8c15-335e402ab116:/local/Devel-REPL:61091
6d2a1d83-d666-409f-9dbf-d3bfcf4e9009:/local/bast/broken_internets/Devel-REPL:80567
Modified: trunk/Devel-REPL/lib/Devel/REPL/Plugin/Commands.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/Commands.pm 2008-05-27 01:32:05 UTC (rev 4416)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/Commands.pm 2008-05-27 01:33:13 UTC (rev 4417)
@@ -62,3 +62,12 @@
};
1;
+
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::Commands - Generic command creation plugin using injected functions
+
+=cut
+
Modified: trunk/Devel-REPL/lib/Devel/REPL/Plugin/Completion.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/Completion.pm 2008-05-27 01:32:05 UTC (rev 4416)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/Completion.pm 2008-05-27 01:33:13 UTC (rev 4417)
@@ -90,3 +90,11 @@
1;
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::Completion - Extensible tab completion
+
+=cut
+
Modified: trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/Globals.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/Globals.pm 2008-05-27 01:32:05 UTC (rev 4416)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/Globals.pm 2008-05-27 01:33:13 UTC (rev 4417)
@@ -50,3 +50,11 @@
1;
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::CompletionDriver::Globals - Complete global variables, packages, namespaced functions
+
+=cut
+
Modified: trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/INC.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/INC.pm 2008-05-27 01:32:05 UTC (rev 4416)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/INC.pm 2008-05-27 01:33:13 UTC (rev 4417)
@@ -115,3 +115,11 @@
1;
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::CompletionDriver::INC - Complete module names in use and require
+
+=cut
+
Modified: trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/Keywords.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/Keywords.pm 2008-05-27 01:32:05 UTC (rev 4416)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/Keywords.pm 2008-05-27 01:33:13 UTC (rev 4417)
@@ -26,3 +26,11 @@
1;
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::CompletionDriver::Keywords - Complete Perl keywords and operators
+
+=cut
+
Modified: trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm 2008-05-27 01:32:05 UTC (rev 4416)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm 2008-05-27 01:33:13 UTC (rev 4417)
@@ -32,3 +32,11 @@
1;
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::CompletionDriver::LexEnv - Complete variable names in the REPL's lexical environment
+
+=cut
+
Modified: trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/Methods.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/Methods.pm 2008-05-27 01:32:05 UTC (rev 4416)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/Methods.pm 2008-05-27 01:33:13 UTC (rev 4417)
@@ -58,4 +58,11 @@
1;
+__END__
+=head1 NAME
+
+Devel::REPL::Plugin::CompletionDriver::Methods - Complete class or object method names
+
+=cut
+
Modified: trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/Turtles.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/Turtles.pm 2008-05-27 01:32:05 UTC (rev 4416)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/CompletionDriver/Turtles.pm 2008-05-27 01:33:13 UTC (rev 4417)
@@ -38,4 +38,9 @@
__END__
+=head1 NAME
+Devel::REPL::Plugin::CompletionDriver::Turtles - Complete Turtles-based commands
+
+=cut
+
Modified: trunk/Devel-REPL/lib/Devel/REPL/Plugin/DDS.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/DDS.pm 2008-05-27 01:32:05 UTC (rev 4416)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/DDS.pm 2008-05-27 01:33:13 UTC (rev 4417)
@@ -20,3 +20,12 @@
};
1;
+
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::DDS - Format results with Data::Dump::Streamer
+
+=cut
+
Modified: trunk/Devel-REPL/lib/Devel/REPL/Plugin/FindVariable.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/FindVariable.pm 2008-05-27 01:32:05 UTC (rev 4416)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/FindVariable.pm 2008-05-27 01:33:13 UTC (rev 4417)
@@ -27,3 +27,11 @@
1;
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::FindVariable - Finds variables by name
+
+=cut
+
Modified: trunk/Devel-REPL/lib/Devel/REPL/Plugin/History.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/History.pm 2008-05-27 01:32:05 UTC (rev 4416)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/History.pm 2008-05-27 01:33:13 UTC (rev 4417)
@@ -50,3 +50,12 @@
};
1;
+
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::History - Keep track of all input, provide shortcuts !1, !-1
+
+=cut
+
Modified: trunk/Devel-REPL/lib/Devel/REPL/Plugin/Interrupt.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/Interrupt.pm 2008-05-27 01:32:05 UTC (rev 4416)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/Interrupt.pm 2008-05-27 01:33:13 UTC (rev 4417)
@@ -16,3 +16,11 @@
1;
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::Interrupt - traps SIGINT to kill long-running lines
+
+=cut
+
Modified: trunk/Devel-REPL/lib/Devel/REPL/Plugin/LexEnv.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/LexEnv.pm 2008-05-27 01:32:05 UTC (rev 4416)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/LexEnv.pm 2008-05-27 01:33:13 UTC (rev 4417)
@@ -58,3 +58,12 @@
#};
1;
+
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::LexEnv - Provide a lexical environment for the REPL
+
+=cut
+
Modified: trunk/Devel-REPL/lib/Devel/REPL/Plugin/NewlineHack.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/NewlineHack.pm 2008-05-27 01:32:05 UTC (rev 4416)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/NewlineHack.pm 2008-05-27 01:33:13 UTC (rev 4417)
@@ -18,3 +18,11 @@
1;
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::NewlineHack - (deprecated)
+
+=cut
+
Modified: trunk/Devel-REPL/lib/Devel/REPL/Plugin/Nopaste.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/Nopaste.pm 2008-05-27 01:32:05 UTC (rev 4416)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/Nopaste.pm 2008-05-27 01:33:13 UTC (rev 4417)
@@ -51,3 +51,11 @@
1;
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::Nopaste - #nopaste to upload session's input and output
+
+=cut
+
Modified: trunk/Devel-REPL/lib/Devel/REPL/Plugin/Packages.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/Packages.pm 2008-05-27 01:32:05 UTC (rev 4416)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/Packages.pm 2008-05-27 01:33:13 UTC (rev 4417)
@@ -49,3 +49,12 @@
# declare empty scratchpad package for cleanliness
1;
+
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::Packages - Keep track of which package the user is in
+
+=cut
+
Modified: trunk/Devel-REPL/lib/Devel/REPL/Plugin/ReadLineHistory.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/ReadLineHistory.pm 2008-05-27 01:32:05 UTC (rev 4416)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/ReadLineHistory.pm 2008-05-27 01:33:13 UTC (rev 4417)
@@ -27,3 +27,11 @@
1;
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::ReadLineHistory - Integrate history with the facilities provided by L<Term::ReadLine>
+
+=cut
+
Modified: trunk/Devel-REPL/lib/Devel/REPL/Plugin/Refresh.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/Refresh.pm 2008-05-27 01:32:05 UTC (rev 4416)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/Refresh.pm 2008-05-27 01:33:13 UTC (rev 4417)
@@ -18,3 +18,12 @@
};
1;
+
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::Refresh - reload libraries with Module::Refresh
+
+=cut
+
Modified: trunk/Devel-REPL/lib/Devel/REPL/Plugin/ShowClass.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/ShowClass.pm 2008-05-27 01:32:05 UTC (rev 4416)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/ShowClass.pm 2008-05-27 01:33:13 UTC (rev 4417)
@@ -67,3 +67,11 @@
1;
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::ShowClass - Dump classes initialized with Class::MOP
+
+=cut
+
Modified: trunk/Devel-REPL/lib/Devel/REPL/Plugin/Timing.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/Timing.pm 2008-05-27 01:32:05 UTC (rev 4416)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/Timing.pm 2008-05-27 01:33:13 UTC (rev 4417)
@@ -24,3 +24,11 @@
1;
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::Timing - display execution times
+
+=cut
+
Modified: trunk/Devel-REPL/lib/Devel/REPL/Plugin/Turtles.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL/Plugin/Turtles.pm 2008-05-27 01:32:05 UTC (rev 4416)
+++ trunk/Devel-REPL/lib/Devel/REPL/Plugin/Turtles.pm 2008-05-27 01:33:13 UTC (rev 4417)
@@ -67,3 +67,12 @@
}
1;
+
+__END__
+
+=head1 NAME
+
+Devel::REPL::Plugin::Turtles - Generic command creation using a read hook
+
+=cut
+
More information about the Bast-commits
mailing list