View panda report.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
johnny5:.rakudobrew dj_goku$ PANDA_SUBMIT_TESTREPORTS=1 panda install IDNA::Punycode | |
==> Fetching IDNA::Punycode | |
==> Building IDNA::Punycode | |
==> Testing IDNA::Punycode | |
t/basic.t .. ok | |
All tests successful. | |
Files=1, Tests=8, 1 wallclock secs ( 0.01 usr 0.00 sys + 0.47 cusr 0.04 csys = 0.52 CPU) | |
Result: PASS | |
==> Installing IDNA::Punycode | |
Copying blib/lib/IDNA/Punycode.pm to /Users/dj_goku/.rakudobrew/moar-nom/install/share/perl6/site/lib/IDNA/Punycode.pm |
View perl6-debug-m.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
johnny5:~ dj_goku$ PANDA_SUBMIT_TESTREPORTS=1 perl6-debug-m --ll-exception ~/.rakudobrew/bin/panda install IDNA::Punycode | |
>>> LOADING /Users/dj_goku/.rakudobrew/bin/panda | |
Could not find warnings in any of: | |
file#lib | |
file#/Users/dj_goku/.perl6/2015.11-33-gfa3ce11/lib | |
inst#/Users/dj_goku/.perl6/2015.11-33-gfa3ce11 | |
file#/Users/dj_goku/.rakudobrew/moar-nom/install/share/perl6/lib | |
file#/Users/dj_goku/.rakudobrew/moar-nom/install/share/perl6/vendor/lib | |
file#/Users/dj_goku/.rakudobrew/moar-nom/install/share/perl6/site/lib | |
inst#/Users/dj_goku/.rakudobrew/moar-nom/install/share/perl6 |
View clean_up_pod.p6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use v6; | |
my @files <a b>; | |
for @files { | |
my $contents = $_.IO.slurp; | |
$contents.=subst(/\n.'# vim: expandtab shiftwidth=4 ft=perl6'/, ''); | |
spurt $_, $contents; | |
} |