]> git.vpit.fr Git - perl/modules/B-RecDeparse.git/commitdiff
This is 0.08 v0.08
authorVincent Pit <vince@profvince.com>
Sun, 1 Sep 2013 17:30:05 +0000 (19:30 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 1 Sep 2013 17:30:05 +0000 (19:30 +0200)
Changes
META.json
META.yml
README
lib/B/RecDeparse.pm

diff --git a/Changes b/Changes
index 8d898bb2e62265265a3263c0986b4d1ef50a6382..2139da8ed68c84dd851f621b1b3006b06b3bc6a7 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for B-RecDeparse
 
+0.08    2013-09-01 17:30 UTC
+        This is a maintenance release. The code contains no functional change.
+        Satisfied users of version 0.07 can skip this update.
+        + Doc : POD headings are now properly linkable.
+        + Doc : Miscellaneous POD tweaks.
+
 0.07    2013-08-21 21:15 UTC
         This is a maintenance release. The code contains no functional change.
         Satisfied users of version 0.06 can skip this update.
index 4f415258843cc01656038b4ce0612d3c20880a76..e20aec6232bcb5a93c927bcbec0f90343d08ebb0 100644 (file)
--- a/META.json
+++ b/META.json
@@ -4,7 +4,7 @@
       "Vincent Pit <perl@profvince.com>"
    ],
    "dynamic_config" : 0,
-   "generated_by" : "ExtUtils::MakeMaker version 6.72, CPAN::Meta::Converter version 2.132140",
+   "generated_by" : "ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.120921",
    "license" : [
       "perl_5"
    ],
@@ -58,5 +58,5 @@
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FB-RecDeparse.git"
       }
    },
-   "version" : "0.07"
+   "version" : "0.08"
 }
index 6faf45f48a0c69174180c703d2fd0500e7752b2f..bdfe6195ebf40f1b57953f66ef27eabbd88594df 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -12,7 +12,7 @@ build_requires:
 configure_requires:
   ExtUtils::MakeMaker: 0
 dynamic_config: 0
-generated_by: 'ExtUtils::MakeMaker version 6.72, CPAN::Meta::Converter version 2.132140'
+generated_by: 'ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.120921'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -33,4 +33,4 @@ resources:
   homepage: http://search.cpan.org/dist/B-RecDeparse/
   license: http://dev.perl.org/licenses/
   repository: http://git.profvince.com/?p=perl%2Fmodules%2FB-RecDeparse.git
-version: 0.07
+version: 0.08
diff --git a/README b/README
index a849d95baf3fde82804944bb382546f4910bcffc..fb57293ab15771c482cbd629d7ea4ef876b70925 100644 (file)
--- a/README
+++ b/README
@@ -2,15 +2,22 @@ NAME
     B::RecDeparse - Deparse recursively into subroutines.
 
 VERSION
-    Version 0.07
+    Version 0.08
 
 SYNOPSIS
-        perl -MO=RecDeparse,deparse,[@B__Deparse_opts],level,-1 [ -e '...' | bleh.pl ]
+        # Deparse recursively a Perl one-liner :
+        $ perl -MO=RecDeparse,deparse,@B__Deparse_opts,level,-1 -e '...'
 
-        # Or as a module :
+        # Or a complete Perl script :
+        $ perl -MO=RecDeparse,deparse,@B__Deparse_opts,level,-1 x.pl
+
+        # Or a single code reference :
         use B::RecDeparse;
 
-        my $brd = B::RecDeparse->new(deparse => [ @b__deparse_opts ], level => $level);
+        my $brd = B::RecDeparse->new(
+         deparse => \@B__Deparse_opts,
+         level   => $level,
+        );
         my $code = $brd->coderef2text(sub { ... });
 
 DESCRIPTION
@@ -22,21 +29,32 @@ DESCRIPTION
     the two modules.
 
 METHODS
-  "new < deparse => [ @B__Deparse_opts ], level => $level >"
+  "new"
+        my $brd = B::RecDeparse->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"
-  "deparse_sub"
-  "pp_entersub"
-  "pp_refgen"
-  "pp_gv"
-    Functions and methods from B::Deparse reimplemented by this module.
-    Never call them directly.
+    The following functions and methods from B::Deparse are reimplemented by
+    this module :
+
+    *   "compile"
+
+    *   "init"
+
+    *   "deparse_sub"
+
+    *   "pp_entersub"
+
+    *   "pp_refgen"
+
+    *   "pp_gv"
 
     Otherwise, B::RecDeparse inherits all methods from B::Deparse.
 
index 8fd2b5437eda782b1e35d980076c41e9cba36230..7c192cb0f5bafb646330acd05e586711bf8b875a 100644 (file)
@@ -17,11 +17,11 @@ B::RecDeparse - Deparse recursively into subroutines.
 
 =head1 VERSION
 
-Version 0.07
+Version 0.08
 
 =cut
 
-our $VERSION = '0.07';
+our $VERSION = '0.08';
 
 =head1 SYNOPSIS