The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 82
META.json 11
META.yml 11
README 040
README.md 400
lib/Clone/Fast.pm 620
6 files changed (This is a version diff) 5664
@@ -1,4 +1,4 @@
-Fri Jul 17 08:26:14 PST 2006
+Fri Jul 17 08:26:14 PST 2006 	Trevor Hall <wazzuteke@cpan.org>
 
 	Version 0.90.1
 		1. Initial release to CPAN
@@ -15,10 +15,4 @@ Sun Feb 12 17:43:44 PST
     Version 0.96
         Remove debugging code
 
-Fri Sep 21 11:49:43 PDT 2012
-    Version 0.96.1
-        Moved to public repository
-
-Mon Oct  1 14:32:06 PDT 2012
-    Version 0.97
-        Update to META files, allowing for proper install
+   
@@ -37,5 +37,5 @@
       }
    },
    "release_status" : "stable",
-   "version" : "0.97"
+   "version" : "0.96"
 }
@@ -19,4 +19,4 @@ no_index:
     - inc
 requires:
   Test::More: 0
-version: 0.97
+version: 0.96
@@ -0,0 +1,40 @@
+Clone-Fast
+=========================
+
+The README is used to introduce the module and provide instructions on
+how to install the module, any machine dependencies it may have (for
+example C compilers and installed libraries) and any other information
+that should be provided before the module is installed.
+
+A README file is required for CPAN modules since CPAN extracts the
+README file from a module distribution so that people browsing the
+archive can use it get an idea of the modules uses. It is usually a
+good idea to provide version information here so that people can
+decide whether fixes for the module are worth downloading.
+
+INSTALLATION
+
+To install this module type the following:
+
+   perl Makefile.PL
+   make
+   make test
+   make install
+
+DEPENDENCIES
+
+This module requires these other modules and libraries:
+
+  blah blah blah
+
+COPYRIGHT AND LICENCE
+
+Put the correct copyright and licence information here.
+
+Copyright (C) 2006 by Trevor Hall
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself, either Perl version 5.8.5 or,
+at your option, any later version of Perl 5 you may have available.
+
+
@@ -1,40 +0,0 @@
-Clone-Fast
-=========================
-
-The README is used to introduce the module and provide instructions on
-how to install the module, any machine dependencies it may have (for
-example C compilers and installed libraries) and any other information
-that should be provided before the module is installed.
-
-A README file is required for CPAN modules since CPAN extracts the
-README file from a module distribution so that people browsing the
-archive can use it get an idea of the modules uses. It is usually a
-good idea to provide version information here so that people can
-decide whether fixes for the module are worth downloading.
-
-INSTALLATION
-
-To install this module type the following:
-
-   perl Makefile.PL
-   make
-   make test
-   make install
-
-DEPENDENCIES
-
-This module requires these other modules and libraries:
-
-  blah blah blah
-
-COPYRIGHT AND LICENCE
-
-Put the correct copyright and licence information here.
-
-Copyright (C) 2006 by Trevor Hall
-
-This library is free software; you can redistribute it and/or modify
-it under the same terms as Perl itself, either Perl version 5.8.5 or,
-at your option, any later version of Perl 5 you may have available.
-
-
@@ -2,7 +2,7 @@ package Clone::Fast;
 
 use strict;
 
-our $VERSION = '0.97';
+our $VERSION = '0.96';
 
 # Configuration variables
 our $BREAK_REFS      = 0;
@@ -70,6 +70,16 @@ begin to see the reason why I loaded this module along side of L<Clone::More>.
 For more information relative to the DESCRIPTION of this module, I recommend peeking into
 the POD written for L<Clone::More> (I took more time with it ;) )
 
+=head2 HISTORY
+
+As noted in L<Clone::More>, this module started as a patch for L<Clone> with repsect to a
+large memory leak a team I was working closely with at the time fell across once implemented
+the cloning into a Perl application.  The unfortunate part is that I wasn't able to patch the
+L<Clone> module without a complete re-factor (I still have no idea where the leak is in Clone),
+and have not been able to get ahold of Ray Finch, the current author and supporter of L<Clone>.
+Every thing considered, I loaded up this and it's counter part L<Clone::More> - both a little
+different from one another, and both a little different from L<Clone> still.
+
 =head2 EXPORT
 
 =head3 clone
@@ -334,7 +344,12 @@ well, yet is very slow.  Subsiquently, Storable, as of Perl 5.8, is CORE; and ma
 
 =item L<Clone>
 
-The original concept of C<Clone::Fast>.
+The 'basis' of C<Clone::Fast>, where L<Clone> is simply a very optimized version of C<Clone::Fast>.  Where hooks, some
+exported routines and advanced functionality have been removed.
+
+=item L<Clone::More>
+
+The counter-part and un-optimized version of L<Clone::Fast>
 
 =back
 
@@ -344,10 +359,9 @@ Trevor Hall, E<lt>wazzuteke@cpan.orgE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2006-2012 by Trevor Hall
-
-This is free software, licensed under:
+Copyright (C) 2006 by Trevor Hall
 
-    The Artistic License 2.0 (GPL Compatible)
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
 
 =cut