r1575 - in packages/libdata-dumper-simple-perl/branches/upstream/current: . lib/Data/Dumper

Gunnar Wolf gwolf at costa.debian.org
Mon Dec 5 18:47:53 UTC 2005


Author: gwolf
Date: 2005-12-05 18:47:53 +0000 (Mon, 05 Dec 2005)
New Revision: 1575

Modified:
   packages/libdata-dumper-simple-perl/branches/upstream/current/Changes
   packages/libdata-dumper-simple-perl/branches/upstream/current/META.yml
   packages/libdata-dumper-simple-perl/branches/upstream/current/lib/Data/Dumper/Simple.pm
Log:
Load /tmp/tmp.Eo8wNZ/libdata-dumper-simple-perl-0.11 into
packages/libdata-dumper-simple-perl/branches/upstream/current.


Modified: packages/libdata-dumper-simple-perl/branches/upstream/current/Changes
===================================================================
--- packages/libdata-dumper-simple-perl/branches/upstream/current/Changes	2005-12-05 18:22:35 UTC (rev 1574)
+++ packages/libdata-dumper-simple-perl/branches/upstream/current/Changes	2005-12-05 18:47:53 UTC (rev 1575)
@@ -1,5 +1,8 @@
 Revision history for Perl extension Data::Dumper::Simple.
 
+0.11  2005-11-15
+    - POD bug.  Changed "autodump" to "autowarn" in POD.
+
 0.10  2005-10-08
     - Added POD tests.
     - Converted to Module::Build

Modified: packages/libdata-dumper-simple-perl/branches/upstream/current/META.yml
===================================================================
--- packages/libdata-dumper-simple-perl/branches/upstream/current/META.yml	2005-12-05 18:22:35 UTC (rev 1574)
+++ packages/libdata-dumper-simple-perl/branches/upstream/current/META.yml	2005-12-05 18:47:53 UTC (rev 1575)
@@ -1,6 +1,6 @@
 ---
 name: Data-Dumper-Simple
-version: 0.10
+version: 0.11
 author:
   - Curtis "Ovid" Poe <ovid at cpan.org>
 abstract: Easily dump variables with names
@@ -13,5 +13,8 @@
 provides:
   Data::Dumper::Simple:
     file: lib/Data/Dumper/Simple.pm
-    version: 0.10
-generated_by: Module::Build version 0.2702
+    version: 0.11
+generated_by: Module::Build version 0.2703
+meta-spec:
+  url: http://module-build.sourceforge.net/META-spec-v1.2.html
+  version: 1.2

Modified: packages/libdata-dumper-simple-perl/branches/upstream/current/lib/Data/Dumper/Simple.pm
===================================================================
--- packages/libdata-dumper-simple-perl/branches/upstream/current/lib/Data/Dumper/Simple.pm	2005-12-05 18:22:35 UTC (rev 1574)
+++ packages/libdata-dumper-simple-perl/branches/upstream/current/lib/Data/Dumper/Simple.pm	2005-12-05 18:47:53 UTC (rev 1575)
@@ -1,7 +1,7 @@
 package Data::Dumper::Simple;
 
 $REVISION = '$Id: Simple.pm,v 1.10 2005/05/20 01:37:08 ovid Exp $';
-$VERSION  = '0.10';
+$VERSION  = '0.11';
 use Filter::Simple;
 use Data::Dumper ();
 use strict;
@@ -247,14 +247,14 @@
   warn display( $scalar, @array, %hash );
 
 Also, if you really, really can't stand typing C<warn> or C<print>, you can
-turn on C<autodump>:
+turn on C<autowarn>:
 
-  use Data::Dumper::Simple as => 'display', autodump => 1;
+  use Data::Dumper::Simple as => 'display', autowarn => 1;
   display($scalar, @array, $some->{ data });
 
 Or you can send the output (as a list) to a different function:
 
-  use Data::Dumper::Simple as => 'debug', autodump => 'to_log';
+  use Data::Dumper::Simple as => 'debug', autowarn => 'to_log';
 
   sub to_log {
       my @data = @_;




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