The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 03
MANIFEST 01
META.json 042
META.yml 1422
README 48
lib/Devel/Cycle.pm 39
6 files changed (This is a version diff) 2185
@@ -1,4 +1,7 @@
 Revision history for Perl extension Devel::Cycle.
+1.12 Fri Nov 14 08:56:23 EST 2014
+     - Moved to GitHub at https://github.com/lstein/Devel-Cycle
+
 1.11 Mon Aug 24 08:50:25 EDT 2009
      - Florian Ragwitz fixed bug 47389
 
@@ -5,3 +5,4 @@ README
 t/Devel-Cycle.t
 lib/Devel/Cycle.pm
 META.yml                                 Module meta-data (added by MakeMaker)
+META.json                                Module JSON meta-data (added by MakeMaker)
@@ -0,0 +1,42 @@
+{
+   "abstract" : "Find memory cycles in objects",
+   "author" : [
+      "Lincoln Stein <lstein@cshl.edu>"
+   ],
+   "dynamic_config" : 1,
+   "generated_by" : "ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.120921",
+   "license" : [
+      "unknown"
+   ],
+   "meta-spec" : {
+      "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
+      "version" : "2"
+   },
+   "name" : "Devel-Cycle",
+   "no_index" : {
+      "directory" : [
+         "t",
+         "inc"
+      ]
+   },
+   "prereqs" : {
+      "build" : {
+         "requires" : {
+            "ExtUtils::MakeMaker" : "0"
+         }
+      },
+      "configure" : {
+         "requires" : {
+            "ExtUtils::MakeMaker" : "0"
+         }
+      },
+      "runtime" : {
+         "requires" : {
+            "Scalar::Util" : "0",
+            "Test::More" : "0"
+         }
+      }
+   },
+   "release_status" : "stable",
+   "version" : "1.12"
+}
@@ -1,15 +1,23 @@
---- #YAML:1.0
-name:                Devel-Cycle
-version:             1.11
-abstract:            Find memory cycles in objects
-license:             ~
-author:              
-    - Lincoln Stein <lstein@cshl.edu>
-generated_by:        ExtUtils::MakeMaker version 6.42
-distribution_type:   module
-requires:     
-    Scalar::Util:                  0
-    Test::More:                    0
+---
+abstract: 'Find memory cycles in objects'
+author:
+  - 'Lincoln Stein <lstein@cshl.edu>'
+build_requires:
+  ExtUtils::MakeMaker: 0
+configure_requires:
+  ExtUtils::MakeMaker: 0
+dynamic_config: 1
+generated_by: 'ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.120921'
+license: unknown
 meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
-    version: 1.3
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: 1.4
+name: Devel-Cycle
+no_index:
+  directory:
+    - t
+    - inc
+requires:
+  Scalar::Util: 0
+  Test::More: 0
+version: 1.12
@@ -1,4 +1,4 @@
-Devel-Cycle version 1.00
+Perl Module Devel::Cycle
 ========================
 
 This module can be used to find memory cycles in objects and other
@@ -53,11 +53,15 @@ To install this module type the following:
    make test
    make install
 
-COPYRIGHT AND LICENCE
+DEVELOPING
+
+The master repository for Devel::Cycle is kept on GitHub at
+https://github.com/lstein/Devel-Cycle. Please contribute by sending
+pull requests.
 
-Put the correct copyright and licence information here.
+COPYRIGHT AND LICENCE
 
-Copyright (C) 2003 by Lincoln Stein
+Copyright (C) 2003-2014 by Lincoln Stein <lincoln.stein@gmail.com>
 
 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.2 or,
@@ -17,7 +17,7 @@ require Exporter;
 our @ISA = qw(Exporter);
 our @EXPORT = qw(find_cycle find_weakened_cycle);
 our @EXPORT_OK = qw($FORMATTING);
-our $VERSION = '1.11';
+our $VERSION = '1.12';
 our $FORMATTING = 'roasted';
 our $QUIET   = 0;
 
@@ -437,13 +437,19 @@ L<Test::Memory::Cycle>
 L<Devel::Leak>
 L<Scalar::Util>
 
+=head1 DEVELOPING
+
+https://github.com/lstein/Devel-Cycle. Please contribute to the code
+base by sending pull requests. Use GitHub for bug reports and feature
+requests.
+
 =head1 AUTHOR
 
-Lincoln Stein, E<lt>lstein@cshl.eduE<gt>
+Lincoln Stein, E<lt>lincoln.stein@gmail.comE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2003 by Lincoln Stein
+Copyright (C) 2003-2014 by Lincoln Stein
 
 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.2 or,