]> git.vpit.fr Git - perl/modules/B-RecDeparse.git/commitdiff
This is 0.02 v0.02
authorVincent Pit <vince@profvince.com>
Mon, 28 Jul 2008 21:29:57 +0000 (23:29 +0200)
committerVincent Pit <vince@profvince.com>
Mon, 28 Jul 2008 21:29:57 +0000 (23:29 +0200)
Changes
META.yml
README
lib/B/RecDeparse.pm

diff --git a/Changes b/Changes
index c18ddcca63d1d70037415123b58a9778f924b73b..6526548d09160f5c2da8e3812eeb47bb6f99f103 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,12 @@
 Revision history for B-RecDeparse
 
 Revision history for B-RecDeparse
 
+0.02    2008-07-28 21:30 UTC
+        + Chg : Perl 5.8 is now required.
+        + Doc : POD nits.
+        + Fix : Empty README.
+        + Fix : Building on perls with a patchlevel.
+        + Tst : Skip a few harmless failures on perls older than 5.8.7.
+
 0.01    2008-07-28 10:35 UTC
         First version, released on an unsuspecting world.
 
 0.01    2008-07-28 10:35 UTC
         First version, released on an unsuspecting world.
 
index 7c4e4d1e071a2d9291ff31d6c98c3abc3ebf9e27..f62f8ea0d03873e9fcc7f58492512ea097d41a72 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                B-RecDeparse
 --- #YAML:1.0
 name:                B-RecDeparse
-version:             0.01
+version:             0.02
 abstract:            Deparse recursively into subroutines.
 license:             perl
 author:              
 abstract:            Deparse recursively into subroutines.
 license:             perl
 author:              
diff --git a/README b/README
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..dc518b9714058d395a218f7656903fc8626744e0 100644 (file)
--- a/README
+++ b/README
@@ -0,0 +1,76 @@
+NAME
+    B::RecDeparse - Deparse recursively into subroutines.
+
+VERSION
+    Version 0.02
+
+SYNOPSIS
+        perl -MO=RecDeparse,deparse,[@B__Deparse_opts],level,-1 [ -e '...' | bleh.pl ]
+
+        # Or as a module :
+        use B::RecDeparse;
+
+        my $brd = B::RecDeparse->new(deparse => [ @b__deparse_opts ], level => $level);
+        my $code = $brd->coderef2text(sub { ... });
+
+DESCRIPTION
+    This module extends B::Deparse by making you recursively replace
+    subroutine calls encountered when deparsing.
+
+    Please refer to B::Deparse documentation for what to do and how to do
+    it. Besides the constructor syntax, everything should work the same for
+    the two modules.
+
+METHODS
+  "new < deparse => [ @B__Deparse_opts ], level => $level >"
+    The B::RecDeparse object constructor. You can specify the underlying
+    B::Deparse constructor arguments by passing a string or an array
+    reference as the value of the "deparse" key. The "level" option expects
+    an integer that specifies how many levels of recursions are allowed : -1
+    means infinite while 0 means none and match B::Deparse behaviour.
+
+  "compile"
+  "init"
+  "pp_entersub"
+  "pp_refgen"
+  "pp_gv"
+    Functions and methods from B::Deparse overriden by this module. Never
+    call them directly.
+
+    Otherwise, B::RecDeparse inherits all methods from B::Deparse.
+
+EXPORT
+    An object-oriented module shouldn't export any function, and so does
+    this one.
+
+DEPENDENCIES
+    Carp (standard since perl 5), Config (since perl 5.00307) and B::Deparse
+    (since perl 5.005).
+
+AUTHOR
+    Vincent Pit, "<perl at profvince.com>", <http://www.profvince.com>.
+
+    You can contact me by mail or on #perl @ FreeNode (vincent or
+    Prof_Vince).
+
+BUGS
+    Please report any bugs or feature requests to "bug-b-recdeparse at
+    rt.cpan.org", or through the web interface at
+    <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=B-RecDeparse>. I will be
+    notified, and then you'll automatically be notified of progress on your
+    bug as I make changes.
+
+SUPPORT
+    You can find documentation for this module with the perldoc command.
+
+        perldoc B::RecDeparse
+
+    Tests code coverage report is available at
+    <http://www.profvince.com/perl/cover/B-RecDeparse>.
+
+COPYRIGHT & LICENSE
+    Copyright 2008 Vincent Pit, all rights reserved.
+
+    This program is free software; you can redistribute it and/or modify it
+    under the same terms as Perl itself.
+
index 3a8a1ea4619be4cd464f2f8e32e458c4bd854b85..37eb15085c91052ea3575cbea339376ad68ddb67 100644 (file)
@@ -16,11 +16,11 @@ B::RecDeparse - Deparse recursively into subroutines.
 
 =head1 VERSION
 
 
 =head1 VERSION
 
-Version 0.01
+Version 0.02
 
 =cut
 
 
 =cut
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 =head1 SYNOPSIS
 
 
 =head1 SYNOPSIS