On Sun Nov 01 12:01:10 2009, ANDK wrote:
Show quoted text> First I saw it only on cpantesters, then I verified it myself on my
> smoker. Test fails without File::ShareDir installed and passes with it.
>
> Let me know if you need further information.
>
> Thanks,
Hey there. I think I fixed this. Have I published the change yet, I
wonder...?
I am looking at the source here on the other monitor and it says that I
released 0.04 on 20091122T1725. The primary changes were to add a
dependency on File::ShareDir and to add version back in to
HPSG::Mason::Interp. I don't remember what the second one was, but I
think the first one fixes your bug. If you agree, pleased to be closinged.
0.04 does look published:
http://search.cpan.org/CPAN/authors/id/C/CJ/CJCOLLIER/HPSG/HPSG-Mason-0.04.tar.gz
diff --git a/Makefile.PL b/Makefile.PL
index 79c1904..d132de8 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,15 +1,16 @@
use inc::Module::Install;
use strict;
use warnings;
-
+
# Define metadata
-name 'HPSG-Mason';
-all_from 'lib/HPSG/Mason.pm';
-
+name 'HPSG-Mason';
+all_from 'lib/HPSG/Mason.pm';
+
# Specific dependencies
-requires 'HTML::Mason' => 1.39;
-test_requires 'Test::More' => '0.42';
+requires 'HTML::Mason' => '1.39';
+requires 'File::ShareDir' => '1.0';
+test_requires 'Test::More' => '0.42';
install_share 'share';
sign;
-
+
WriteAll;