The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 05
MANIFEST 01
META.json 043
META.yml 1423
Makefile.PL 05
lib/Test/MockTime.pm 11
6 files changed (This is a version diff) 1578
@@ -1,6 +1,11 @@
 CHANGES
 -------
 
+  0.13 - 07 Aug 2014
+
+      * explicit license in META as per RT #97806
+      * included other updates to Makefile.PL details (author, etc)
+
   0.12 - 09 Apr 2009
 
       * removing t/DateCalc.t and lib/Test/MockTime/DateCalc.pm to allow Kevin Ryde to maintain a separate module.
@@ -9,3 +9,4 @@ t/prototypes.t
 lib/Test/MockTime.pm
 lib/Test/MockTime.pod
 META.yml                                 Module meta-data (added by MakeMaker)
+META.json                                Module JSON meta-data (added by MakeMaker)
@@ -0,0 +1,43 @@
+{
+   "abstract" : "Replaces actual time with simulated time ",
+   "author" : [
+      "David Dick <ddick@cpan.org>"
+   ],
+   "dynamic_config" : 1,
+   "generated_by" : "ExtUtils::MakeMaker version 6.72, CPAN::Meta::Converter version 2.132140",
+   "license" : [
+      "perl_5"
+   ],
+   "meta-spec" : {
+      "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
+      "version" : "2"
+   },
+   "name" : "Test-MockTime",
+   "no_index" : {
+      "directory" : [
+         "t",
+         "inc"
+      ]
+   },
+   "prereqs" : {
+      "build" : {
+         "requires" : {
+            "ExtUtils::MakeMaker" : "0"
+         }
+      },
+      "configure" : {
+         "requires" : {
+            "ExtUtils::MakeMaker" : "0"
+         }
+      },
+      "runtime" : {
+         "requires" : {
+            "Test::More" : "0",
+            "Time::Local" : "0",
+            "Time::Piece" : "1.08"
+         }
+      }
+   },
+   "release_status" : "stable",
+   "version" : "0.13"
+}
@@ -1,15 +1,24 @@
---- #YAML:1.0
-name:                Test-MockTime
-version:             0.12
-abstract:            ~
-license:             ~
-author:              ~
-generated_by:        ExtUtils::MakeMaker version 6.42
-distribution_type:   module
-requires:     
-    Test::More:                    0
-    Time::Local:                   0
-    Time::Piece:                   1.08
+---
+abstract: 'Replaces actual time with simulated time '
+author:
+  - 'David Dick <ddick@cpan.org>'
+build_requires:
+  ExtUtils::MakeMaker: 0
+configure_requires:
+  ExtUtils::MakeMaker: 0
+dynamic_config: 1
+generated_by: 'ExtUtils::MakeMaker version 6.72, CPAN::Meta::Converter version 2.132140'
+license: perl
 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: Test-MockTime
+no_index:
+  directory:
+    - t
+    - inc
+requires:
+  Test::More: 0
+  Time::Local: 0
+  Time::Piece: 1.08
+version: 0.13
@@ -3,7 +3,12 @@ use ExtUtils::MakeMaker;
 
 WriteMakefile(
 		'NAME'          => 'Test::MockTime',
+		'AUTHOR'        => q{David Dick <ddick@cpan.org>},
 		'VERSION_FROM'  => 'lib/Test/MockTime.pm',
+		'ABSTRACT_FROM' => 'lib/Test/MockTime.pod',
+	    ($ExtUtils::MakeMaker::VERSION >= 6.3002
+	      ? ('LICENSE'=> 'perl')
+	      : ()),
 		'PREREQ_PM'     => {
 				'Test::More' => 0,
 				'Time::Local' => 0,
@@ -14,7 +14,7 @@ our @EXPORT_OK = qw(
 our %EXPORT_TAGS = (
     'all' => \@EXPORT_OK,
 );
-our ($VERSION) = '0.12';
+our ($VERSION) = '0.13';
 our ($offset) = 0;
 our ($fixed) = undef;