[SCM] libmessage-passing-perl Debian packaging branch, master, updated. debian/0.111-3-14-g44f6e88

Tomas Doran bobtfish at bobtfish.net
Mon May 6 11:57:32 UTC 2013


The following commit has been merged in the master branch:
commit fe4c9f4267332d2c61ddfaa3cd231b95a6f8a201
Author: Tomas Doran <bobtfish at bobtfish.net>
Date:   Tue Jul 31 11:30:37 2012 +0100

    Fix some of the Pod coverage fail

diff --git a/README b/README
index 24a4e1d..4836557 100644
--- a/README
+++ b/README
@@ -112,8 +112,13 @@ SEE ALSO
     Log::Dispatch.
 
 THIS MODULE
-    This is a simple MooseX::Getopt script, with one input, one filter and
-    one output.
+    This is a simple MooX::Options script, with one input, one filter and
+    one output. To build your own similar scripts, see:
+
+    Message::Passing::DSL - To declare your message chains
+    Message::Passing::Role::CLIComponent - To provide "foo" and
+    "foo_options" attribute pairs.
+    Message::Passing::Role::Script - To provide daemonization features.
 
   METHODS
    build_chain
diff --git a/lib/Message/Passing/Input/FileTail.pm b/lib/Message/Passing/Input/FileTail.pm
index ce738c8..58f24d9 100644
--- a/lib/Message/Passing/Input/FileTail.pm
+++ b/lib/Message/Passing/Input/FileTail.pm
@@ -60,6 +60,16 @@ Message::Passing::Input::FileTail - File tailing input
 
 =head1 DESCRIPTION
 
+=head1 METHODS
+
+=head2 filename
+
+The filename of the file to tail.
+
+=head2 tailer_pid
+
+The PID of the C<< tail -F >> being run.
+
 =head1 SEE ALSO
 
 L<Message::Passing>
diff --git a/lib/Message/Passing/Output/Callback.pm b/lib/Message/Passing/Output/Callback.pm
index 7847519..4fde9eb 100644
--- a/lib/Message/Passing/Output/Callback.pm
+++ b/lib/Message/Passing/Output/Callback.pm
@@ -32,6 +32,10 @@ Message::Passing::Output::Callback - Output to call back into your code
 
 =head1 METHODS
 
+=head2 cb
+
+The callback to be called when a message is received.
+
 =head2 consume ($msg)
 
 Calls the callback with the message as it's first parameter
diff --git a/t/author/podcoverage.t b/t/author/podcoverage.t
index df51ea3..08c6ed2 100644
--- a/t/author/podcoverage.t
+++ b/t/author/podcoverage.t
@@ -8,8 +8,8 @@ use Test::Pod::Coverage 1.04;
 my @modules = all_modules;
 our @private = ( 'BUILD' );
 foreach my $module (@modules) {
-    local @private = (@private, 'expand_class_name', 'make', 'set_error', 'registry_get', 'registry_set', 'registry_has') if $module =~ /^Message::Passing::DSL::Factory$/;
-    local @private = (@private, 'get_config_from_file', 'new_with_config') if $module =~ /^Message::Passing$/;
+    local @private = (@private, 'expand_class_name', 'make', 'set_error', 'registry_get', 'registry_set', 'registry_has', 'error') if $module =~ /^Message::Passing::DSL::Factory$/;
+    local @private = (@private, qw/get_config_from_file new_with_config configfile decoder encoder error filter output/) if $module =~ /^Message::Passing$/;
     local @private = (@private, 'make_variant') if $module =~ /^Message::Passing::Role::CLIComponent$/;
 
     pod_coverage_ok($module, {

-- 
libmessage-passing-perl Debian packaging



More information about the Pkg-perl-cvs-commits mailing list