This file contains hidden or 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
$ zef install rakudoc | |
===> Searching for: rakudoc | |
===> Searching for missing dependencies: Pod::Utilities:ver<0.0.1+>, IO::MiddleMan:ver<1.001003+> | |
===> Testing: Pod::Utilities:ver<0.0.1> | |
===> Testing [OK] for Pod::Utilities:ver<0.0.1> | |
===> Testing: IO::MiddleMan:ver<1.001003> | |
===> Testing [OK] for IO::MiddleMan:ver<1.001003> | |
===> Testing: rakudoc:ver<0.2.3>:auth<github:Raku>:api<1> | |
[rakudoc] No such method 'read-dist' for invocant of type | |
[rakudoc] 'CompUnit::Repository::Distribution' |
This file contains hidden or 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
#!/usr/bin/env raku | |
use v6.d; | |
use File::Find; # To support recursive repo searching | |
use Terminal::ANSIColor; # Or don't use colored(), or hardcode SGR codes | |
use Text::MiscUtils::Layout; # Or change duospace-width to .chars | |
#| Summarize status and problems in many git checkouts | |
sub MAIN( |
OlderNewer