]> git.vpit.fr Git - perl/modules/Acme-CPANAuthors-You-re_using.git/commitdiff
This is 0.02 v0.02
authorVincent Pit <vince@profvince.com>
Tue, 17 Feb 2009 17:01:56 +0000 (18:01 +0100)
committerVincent Pit <vince@profvince.com>
Tue, 17 Feb 2009 17:01:56 +0000 (18:01 +0100)
Changes
META.yml
README
lib/Acme/CPANAuthors/You/re_using.pm

diff --git a/Changes b/Changes
index ddd73ddfa5c1a244f23c63b73de0e5e17d508951..58eadc45614904d7984103cfeb6cfa51db8f43de 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,11 @@
+0.02    2009-02-17 17:05 UTC
+        + Doc : Misc. improvements.
+        + Fix : Missing directory trees to search for installed modules.
+        + Fix : 'Perl' shouldn't been counted as a proper module.
+        + Tst : Actually register the names in only one test. This divides the
+                test suite run time by three.
+        + Tst : Test that some of our deps were correctly discovered.
+
 0.01    2009-02-16 18:15 UTC
         First version, released on an unsuspecting world.
 
index 5151af45ca65d1e11af4c21e5897c46687d91421..28894e3c23f3c1a6656a0c6f51444018cd76fbea 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,7 +1,7 @@
 --- #YAML:1.0
 name:               Acme-CPANAuthors-You-re_using
-version:            0.01
-abstract:           We are the CPAN authors that have written the modules installed for this perl.
+version:            0.02
+abstract:           We are the CPAN authors that have written the modules installed on your perl!
 author:
     - Vincent Pit <perl@profvince.com>
 license:            perl
diff --git a/README b/README
index cf94e122953169a68d451972c8cebe81c089b1da..a18ce40ae1d00358500ba679bab229a0691f1d89 100644 (file)
--- a/README
+++ b/README
@@ -1,9 +1,9 @@
 NAME
     Acme::CPANAuthors::You::re_using - We are the CPAN authors that have
-    written the modules installed for this perl.
+    written the modules installed on your perl!
 
 VERSION
-    Version 0.01
+    Version 0.02
 
 SYNOPSIS
         use Acme::CPANAuthors;
@@ -12,12 +12,20 @@ SYNOPSIS
         print $authors->name($_) . " ($_)\n" for $authors->id;
 
 DESCRIPTION
-    This module builds an Acme::CPANAuthors class by looking for all
-    installed modules for the current "perl" and then retrieving theirs
-    authors' name and PAUSE id.
-
-    It may take some time to load since it has to get CPAN indexes at
-    "BEGIN" time.
+    This module builds an Acme::CPANAuthors class by listing all the modules
+    that are installed on the current "perl" and then retrieving the name
+    and the PAUSE id of their corresponding authors.
+
+    It may take some time to load since it has to search all the directory
+    trees given by your @INC for modules, but also to get and parse CPAN
+    indexes.
+
+FUNCTIONS
+  "register"
+    Fetches and registers the names into Acme::CPANAuthors::Register. This
+    function is automatically called when you "use" this module, unless you
+    have set the package variable $Acme::CPANAuthors::You're_using::SKIP to
+    true beforehand.
 
 DEPENDENCIES
     Carp, ExtUtils::Installed, Acme::CPANAuthors.
index 5d3932f514b536b364fb5f47db94010a16d41686..6675784681a3b551dd6103fe0761f0f06830e004 100644 (file)
@@ -15,13 +15,13 @@ Acme::CPANAuthors::You::re_using - We are the CPAN authors that have written the
 
 =head1 VERSION
 
-Version 0.01
+Version 0.02
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.01';
+ $VERSION = '0.02';
 }
 
 =head1 SYNOPSIS