projects
/
p5sagit/Safe-Isa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
78de03a
)
no longer inherit from Exporter
Karen Etheridge [Thu, 19 Sep 2013 04:10:12 +0000 (21:10 -0700)]
Makefile.PL
patch
|
blob
|
blame
|
history
lib/Safe/Isa.pm
patch
|
blob
|
blame
|
history
diff --git
a/Makefile.PL
b/Makefile.PL
index
0867c49
..
4641c15
100644
(file)
--- a/
Makefile.PL
+++ b/
Makefile.PL
@@
-26,7
+26,7
@@
WriteMakefile(
},
PREREQ_PM => {
- 'Exporter' => 0,
+ 'Exporter' => '5.57',
'Scalar::Util' => 0,
},
},
diff --git
a/lib/Safe/Isa.pm
b/lib/Safe/Isa.pm
index
bb0b221
..
ebadc37
100644
(file)
--- a/
lib/Safe/Isa.pm
+++ b/
lib/Safe/Isa.pm
@@
-3,7
+3,7
@@
package Safe::Isa;
use strict;
use warnings FATAL => 'all';
use Scalar::Util qw(blessed);
-use base qw(Exporter);
+use Exporter 5.57 qw(import);
our $VERSION = '1.000003';