The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 3722
META.json 55
META.yml 77
Makefile.PL 01
lib/Class/Base.pm 11
5 files changed (This is a version diff) 5036
@@ -10,47 +10,32 @@
 #
 #========================================================================
 
-#------------------------------------------------------------------------
-# Version 0.05 2012/05/16
-#------------------------------------------------------------------------
 
-* Silencing a warning by chromatic RT 75286
+0.06 2014.08.26
+    Add license to META files
+    Updating the Changes file
 
-* Linking to source repository
+0.05 2012.05.16
+    Silencing a warning by chromatic RT 75286
+    Linking to source repository
 
-#------------------------------------------------------------------------
-# Version 0.04 2012/02/06
-#------------------------------------------------------------------------
 
-* Test script is using Test::More instead the home-made ok() and is().
+0.04 2012.02.06
+    Test script is using Test::More instead the home-made ok() and is().
+    Recommend using Badger::Base instead.
+    Gabor Szabo co-maintainer.
 
-* Recommend using Badger::Base instead.
+0.03 2002.05.13
+    Added the params() method which is typically called from the init()
+      method to copy value from a configuration hash into $self.  
+    
+    Minor changes to debug() method to only use object value _DEBUG if
+      defined, otherwise fall back on $DEBUG package variable.
 
-* Gabor Szabo co-maintainer.
-
-#------------------------------------------------------------------------
-# Version 0.03 
-#------------------------------------------------------------------------
-
-* Added the params() method which is typically called from the init()
-  method to copy value from a configuration hash into $self.  
-
-* Minor changes to debug() method to only use object value _DEBUG if
-  defined, otherwise fall back on $DEBUG package variable.
-
-#------------------------------------------------------------------------
-# Version 0.02  2002/02/20
-#------------------------------------------------------------------------
-
-* Added the clone() method as suggested by Brian Moseley
-
-* Added the id(), debug() and debugging() methods to provide a fairly
-  simple mechanism for generating debugging information.
-
-
-#------------------------------------------------------------------------
-# Version 0.01  2002/01/11
-#------------------------------------------------------------------------
-
-* initial version
+0.02  2002.02.20
+    Added the clone() method as suggested by Brian Moseley
+    Added the id(), debug() and debugging() methods to provide a fairly
+      simple mechanism for generating debugging information.
 
+0.01  2002.01.11
+    initial version
@@ -4,9 +4,9 @@
       "Andy Wardley <abw@kfs.org>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.112150",
+   "generated_by" : "ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.140640",
    "license" : [
-      "unknown"
+      "perl_5"
    ],
    "meta-spec" : {
       "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
@@ -22,12 +22,12 @@
    "prereqs" : {
       "build" : {
          "requires" : {
-            "ExtUtils::MakeMaker" : 0
+            "ExtUtils::MakeMaker" : "0"
          }
       },
       "configure" : {
          "requires" : {
-            "ExtUtils::MakeMaker" : 0
+            "ExtUtils::MakeMaker" : "0"
          }
       },
       "runtime" : {
@@ -42,5 +42,5 @@
          "url" : "https://github.com/szabgab/Class-Base"
       }
    },
-   "version" : "0.05"
+   "version" : "0.06"
 }
@@ -3,22 +3,22 @@ abstract: 'useful base class for other modules'
 author:
   - 'Andy Wardley <abw@kfs.org>'
 build_requires:
-  ExtUtils::MakeMaker: 0
+  ExtUtils::MakeMaker: '0'
 configure_requires:
-  ExtUtils::MakeMaker: 0
+  ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.112150'
-license: unknown
+generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.140640'
+license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
-  version: 1.4
+  version: '1.4'
 name: Class-Base
 no_index:
   directory:
     - t
     - inc
 requires:
-  Test::More: 0.47
+  Test::More: '0.47'
 resources:
   repository: https://github.com/szabgab/Class-Base
-version: 0.05
+version: '0.06'
@@ -6,6 +6,7 @@ my %opts = (
     'PREREQ_PM' => {
         'Test::More' => 0.47,
     },
+    LICENSE  => 'perl',
     META_MERGE        => {
        resources => {
            repository  =>  'https://github.com/szabgab/Class-Base',
@@ -22,7 +22,7 @@ package Class::Base;
 
 use strict;
 
-our $VERSION  = '0.05';
+our $VERSION  = '0.06';
 
 
 #------------------------------------------------------------------------