The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Build.PL 023
Changes 04
MANIFEST 24
META.json 050
META.yml 1927
Makefile.PL 45
README 11
lib/Class/Gomor/Array.pm 33
lib/Class/Gomor/Hash.pm 33
lib/Class/Gomor.pm 33
10 files changed (This is a version diff) 35123
@@ -0,0 +1,23 @@
+#
+# $Id: Build.PL 2000 2015-01-13 18:24:09Z gomor $
+#
+use strict;
+use warnings;
+
+use Module::Build;
+
+my $builder = Module::Build->new(
+   module_name => 'Class::Gomor',
+   license => 'artistic',
+   dist_author => 'GomoR <gomor_at_cpan.org>',
+   dist_version_from => 'lib/Class/Gomor.pm',
+   requires => {
+      'perl' => '5.6.1',
+      'Data::Dumper' => '0',
+   },
+   configure_requires => {
+      'Module::Build' => 0,
+   },
+);
+
+$builder->create_build_script;
@@ -1,5 +1,9 @@
 Revision history for Perl extension Class::Gomor.
 
+1.03 Tue Jan 13 19:21:45 CET 2015
+   - update: copyright notice
+   - update: Kwalitee
+
 1.02 Sat May 23 15:44:40 CEST 2009
    - bugfix: a warning when used with perl 5.10
    - new: test kwalitee
@@ -1,12 +1,15 @@
+Build.PL
 Changes
 examples/my-class.pl
+lib/Class/Gomor.pm
 lib/Class/Gomor/Array.pm
 lib/Class/Gomor/Hash.pm
-lib/Class/Gomor.pm
 LICENSE
 LICENSE.Artistic
 Makefile.PL
 MANIFEST			This list of files
+META.json
+META.yml
 README
 t/01-pod-coverage.t
 t/01-test-pod.t
@@ -21,4 +24,3 @@ t/07-hash-clone.t
 t/08-hash-fullclone.t
 t/09-array-clone.t
 t/10-array-fullclone.t
-META.yml                                 Module meta-data (added by MakeMaker)
@@ -0,0 +1,50 @@
+{
+   "abstract" : "another class and object builder",
+   "author" : [
+      "GomoR <gomor_at_cpan.org>"
+   ],
+   "dynamic_config" : 1,
+   "generated_by" : "Module::Build version 0.421",
+   "license" : [
+      "artistic_1"
+   ],
+   "meta-spec" : {
+      "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
+      "version" : "2"
+   },
+   "name" : "Class-Gomor",
+   "prereqs" : {
+      "configure" : {
+         "requires" : {
+            "Module::Build" : "0"
+         }
+      },
+      "runtime" : {
+         "requires" : {
+            "Data::Dumper" : "0",
+            "perl" : "v5.6.1"
+         }
+      }
+   },
+   "provides" : {
+      "Class::Gomor" : {
+         "file" : "lib/Class/Gomor.pm",
+         "version" : "1.03"
+      },
+      "Class::Gomor::Array" : {
+         "file" : "lib/Class/Gomor/Array.pm",
+         "version" : "1.03"
+      },
+      "Class::Gomor::Hash" : {
+         "file" : "lib/Class/Gomor/Hash.pm",
+         "version" : "1.03"
+      }
+   },
+   "release_status" : "stable",
+   "resources" : {
+      "license" : [
+         "http://opensource.org/licenses/artistic-license.php"
+      ]
+   },
+   "version" : "1.03"
+}
@@ -1,22 +1,30 @@
---- #YAML:1.0
-name:               Class-Gomor
-version:            1.02
-abstract:           another class and object builder
+---
+abstract: 'another class and object builder'
 author:
-    - GomoR <gomor-cpan_at_gomor.org>
-license:            artistic
-distribution_type:  module
+  - 'GomoR <gomor_at_cpan.org>'
+build_requires: {}
 configure_requires:
-    ExtUtils::MakeMaker:  0
-build_requires:
-    ExtUtils::MakeMaker:  0
-requires:
-    Data::Dumper:  0
-no_index:
-    directory:
-        - t
-        - inc
-generated_by:       ExtUtils::MakeMaker version 6.50
+  Module::Build: '0'
+dynamic_config: 1
+generated_by: 'Module::Build version 0.421, CPAN::Meta::Converter version 2.143240'
+license: artistic
 meta-spec:
-    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
-    version:  1.4
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: '1.4'
+name: Class-Gomor
+provides:
+  Class::Gomor:
+    file: lib/Class/Gomor.pm
+    version: '1.03'
+  Class::Gomor::Array:
+    file: lib/Class/Gomor/Array.pm
+    version: '1.03'
+  Class::Gomor::Hash:
+    file: lib/Class/Gomor/Hash.pm
+    version: '1.03'
+requires:
+  Data::Dumper: '0'
+  perl: v5.6.1
+resources:
+  license: http://opensource.org/licenses/artistic-license.php
+version: '1.03'
@@ -1,14 +1,15 @@
 #
-# $Id: Makefile.PL 1633 2009-05-23 13:30:33Z gomor $
+# $Id: Makefile.PL 2000 2015-01-13 18:24:09Z gomor $
 #
 use ExtUtils::MakeMaker;
 
 WriteMakefile(
-   NAME          => 'Class::Gomor',
-   LICENSE       => 'artistic',
+   NAME => 'Class::Gomor',
    VERSION_FROM  => 'lib/Class/Gomor.pm',
+   LICENSE => 'artistic',
    ABSTRACT_FROM => 'lib/Class/Gomor.pm',
-   AUTHOR        => 'GomoR <gomor-cpan_at_gomor.org>',
+   AUTHOR => 'GomoR <gomor_at_cpan.org>',
+   MIN_PERL_VERSION => '5.6.1',
    PREREQ_PM     => {
       Data::Dumper => 0,
    },
@@ -21,5 +21,5 @@ COPYRIGHT AND LICENSE
    You may distribute this module under the terms of the Artistic license.
    See LICENSE.Artistic file in the source distribution archive.
 
-   Copyright (c) 2004-2009, Patrice <GomoR> Auffret
+   Copyright (c) 2004-2015, Patrice <GomoR> Auffret
 
@@ -1,10 +1,10 @@
 #
-# $Id: Array.pm 1633 2009-05-23 13:30:33Z gomor $
+# $Id: Array.pm 2000 2015-01-13 18:24:09Z gomor $
 #
 package Class::Gomor::Array;
 use strict; use warnings;
 
-our $VERSION = '1.02';
+our $VERSION = '1.03';
 
 use Class::Gomor;
 use base qw(Class::Gomor);
@@ -201,7 +201,7 @@ Patrice E<lt>GomoRE<gt> Auffret
       
 =head1 COPYRIGHT AND LICENSE
   
-Copyright (c) 2004-2009, Patrice E<lt>GomoRE<gt> Auffret
+Copyright (c) 2004-2015, Patrice E<lt>GomoRE<gt> Auffret
 
 You may distribute this module under the terms of the Artistic license.
 See LICENSE.Artistic file in the source distribution archive.
@@ -1,10 +1,10 @@
 #
-# $Id: Hash.pm 1633 2009-05-23 13:30:33Z gomor $
+# $Id: Hash.pm 2000 2015-01-13 18:24:09Z gomor $
 #
 package Class::Gomor::Hash;
 use strict; use warnings;
 
-our $VERSION = '1.02';
+our $VERSION = '1.03';
 
 use Class::Gomor;
 use base qw(Class::Gomor);
@@ -181,7 +181,7 @@ Patrice E<lt>GomoRE<gt> Auffret
       
 =head1 COPYRIGHT AND LICENSE
   
-Copyright (c) 2004-2009, Patrice E<lt>GomoRE<gt> Auffret
+Copyright (c) 2004-2015, Patrice E<lt>GomoRE<gt> Auffret
 
 You may distribute this module under the terms of the Artistic license.
 See LICENSE.Artistic file in the source distribution archive.
@@ -1,10 +1,10 @@
 #
-# $Id: Gomor.pm 1633 2009-05-23 13:30:33Z gomor $
+# $Id: Gomor.pm 2000 2015-01-13 18:24:09Z gomor $
 #
 package Class::Gomor;
 use strict; use warnings;
 
-our $VERSION = '1.02';
+our $VERSION = '1.03';
 
 use Exporter;
 use base qw(Exporter);
@@ -201,7 +201,7 @@ Patrice E<lt>GomoRE<gt> Auffret
       
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2004-2009, Patrice E<lt>GomoRE<gt> Auffret
+Copyright (c) 2004-2015, Patrice E<lt>GomoRE<gt> Auffret
 
 You may distribute this module under the terms of the Artistic license.
 See LICENSE.Artistic file in the source distribution archive.