txt stringlengths 202 72.4k |
|---|
### ----------------------------------------------------
### -- App::APOTD
### -- Licenses: Artistic-2.0
### -- Authors: Shimon Bollinger
### -- File: t/02-exports.rakutest
### ----------------------------------------------------
use v6.d;
use Test;
use App::APOTD;
plan 1;
ok ::('&main'), 'did &main get exported?';
... |
### ----------------------------------------------------
### -- App::APOTD
### -- Licenses: Artistic-2.0
### -- Authors: Shimon Bollinger
### -- File: t/01-load.rakutest
### ----------------------------------------------------
use v6.d;
use Test;
plan 1;
use-ok "App::APOTD", "Module loaded OK";
|
### ----------------------------------------------------
### -- App::APOTD
### -- Licenses: Artistic-2.0
### -- Authors: Shimon Bollinger
### -- File: t/00-meta6.rakutest
### ----------------------------------------------------
#! /usr/bin/env raku
use v6.d;
use Test;
plan 1;
constant AUTHOR = ?%*ENV<AUTHOR_TESTING>... |
### ----------------------------------------------------
### -- App::APOTD
### -- Licenses: Artistic-2.0
### -- Authors: Shimon Bollinger
### -- File: lib/App/APOTD.rakumod
### ----------------------------------------------------
#! /usr/bin/env raku
use v6.d;
#=========================================================... |
### ----------------------------------------------------
### -- App::AizuOnlineJudge
### -- Licenses: Artistic-2.0
### -- Authors: Itsuki Toyota
### -- File: META6.json
### ----------------------------------------------------
{
"auth": "zef:titsuki",
"authors": [
"Itsuki Toyota"
],
"build-depends": [
],
... |
### ----------------------------------------------------
### -- App::AizuOnlineJudge
### -- Licenses: Artistic-2.0
### -- Authors: Itsuki Toyota
### -- File: LICENSE
### ----------------------------------------------------
The Artistic License 2.0
Copyright (c) 2000-2016, The Perl Foundation.
Every... |
### ----------------------------------------------------
### -- App::AizuOnlineJudge
### -- Licenses: Artistic-2.0
### -- Authors: Itsuki Toyota
### -- File: README.md
### ----------------------------------------------------
[ 2000-2006, The Perl Foundation.
Everyon... |
### ----------------------------------------------------
### -- App::Browser
### -- Licenses: Artistic-2.0
### -- Authors: Elizabeth Mattijsen
### -- File: README.md
### ----------------------------------------------------
[](... |
### ----------------------------------------------------
### -- App::Browser
### -- Licenses: Artistic-2.0
### -- Authors: Elizabeth Mattijsen
### -- File: dist.ini
### ----------------------------------------------------
name = App-Browser
[ReadmeFromPod]
; enable = false
filename = doc/App-Browser.rakudoc
[PruneFil... |
### ----------------------------------------------------
### -- App::Browser
### -- Licenses: Artistic-2.0
### -- Authors: Elizabeth Mattijsen
### -- File: t/01-basic.rakutest
### ----------------------------------------------------
use Test;
use App::Browser;
plan 1;
ok &browse, "module exported &browse";
# vim: ex... |
### ----------------------------------------------------
### -- App::Browser
### -- Licenses: Artistic-2.0
### -- Authors: Elizabeth Mattijsen
### -- File: xt/coverage.rakutest
### ----------------------------------------------------
use Test::Coverage;
plan 2;
todo("needs actual tests");
coverage-at-least 75;
todo(... |
### ----------------------------------------------------
### -- App::Browser
### -- Licenses: Artistic-2.0
### -- Authors: Elizabeth Mattijsen
### -- File: lib/App/Browser.rakumod
### ----------------------------------------------------
my sub expand($url) {
$url.contains('://') ?? $url !! "https://$url"
}
my prot... |
### ----------------------------------------------------
### -- App::Cal
### -- Licenses: Artistic-2.0
### -- Authors: Will Coleda
### -- File: META6.json
### ----------------------------------------------------
{
"auth": "zef:coke",
"authors": [
"Will Coleda"
],
"build-depends": [
"Test::Differences"
... |
### ----------------------------------------------------
### -- App::Cal
### -- Licenses: Artistic-2.0
### -- Authors: Will Coleda
### -- File: LICENSE
### ----------------------------------------------------
The Artistic License 2.0
Copyright (c) 2000-2006, The Perl Foundation.
Everyone is permitt... |
### ----------------------------------------------------
### -- App::Cal
### -- Licenses: Artistic-2.0
### -- Authors: Will Coleda
### -- File: README.md
### ----------------------------------------------------
# NAME
cal - command-line calendar utility
# DESCRIPTION
$ cal
Displays the current month, highl... |
### ----------------------------------------------------
### -- App::Cal
### -- Licenses: Artistic-2.0
### -- Authors: Will Coleda
### -- File: dist.ini
### ----------------------------------------------------
; App::Mi6 configuration
name = App::Cal
[UploadToZef]
[ReadmeFromPod]
enabled = false
[PruneFiles]
filena... |
### ----------------------------------------------------
### -- App::Cal
### -- Licenses: Artistic-2.0
### -- Authors: Will Coleda
### -- File: t/year.t
### ----------------------------------------------------
#!/usr/bin/env raku
=begin comment
Test that our output for a given month matches system cal
=end comment
... |
### ----------------------------------------------------
### -- App::Cal
### -- Licenses: Artistic-2.0
### -- Authors: Will Coleda
### -- File: t/month.t
### ----------------------------------------------------
#!/usr/bin/env raku
=begin comment
Test that our output for a given month matches system cal
=end comment
... |
### ----------------------------------------------------
### -- App::Cal
### -- Licenses: Artistic-2.0
### -- Authors: Will Coleda
### -- File: lib/App/Cal.rakumod
### ----------------------------------------------------
unit class App::Cal:ver<0.9.1>;
use Terminal::ANSIColor;
enum Months «
:January(1) February M... |
### ----------------------------------------------------
### -- App::Crag
### -- Licenses: Artistic-2.0
### -- Authors: librasteve
### -- File: META6.json
### ----------------------------------------------------
{
"name": "App::Crag",
"description": "calculator using raku grammars",
"version": "0.0.25",
... |
### ----------------------------------------------------
### -- App::Crag
### -- Licenses: Artistic-2.0
### -- Authors: librasteve
### -- File: LICENSE
### ----------------------------------------------------
The Artistic License 2.0
Copyright (c) 2000-2006, The Perl Foundation.
Everyone is permitt... |
### ----------------------------------------------------
### -- App::Crag
### -- Licenses: Artistic-2.0
### -- Authors: librasteve
### -- File: README.md
### ----------------------------------------------------
[](https://opensource... |
### ----------------------------------------------------
### -- App::Crag
### -- Licenses: Artistic-2.0
### -- Authors: librasteve
### -- File: frink-of-the-day.md
### ----------------------------------------------------
Frink is a precursor to crag with many similar ideas.
To compare:
And contrast:
- crag has a st... |
### ----------------------------------------------------
### -- App::Crag
### -- Licenses: Artistic-2.0
### -- Authors: librasteve
### -- File: crag-of-the-day.md
### ----------------------------------------------------
Here are some crags to plunder for a crag-of-the-day generator:
```
crag '$t=^<22:04:22>; $t.in: <m... |
### ----------------------------------------------------
### -- App::Crag
### -- Licenses: Artistic-2.0
### -- Authors: librasteve
### -- File: t/01-sanity.rakutest
### ----------------------------------------------------
use Test;
use App::Crag;
plan 1;
lives-ok {eval-me('say 1')}, 'sanity check';
# vim: expandtab ... |
### ----------------------------------------------------
### -- App::Crag
### -- Licenses: Artistic-2.0
### -- Authors: librasteve
### -- File: xt/02-cotd.rakutest
### ----------------------------------------------------
use Test;
use App::Crag;
use MONKEY-SEE-NO-EVAL;
my $cotd = q:to/END/;
crag '$t=^<22:04:22>; say ... |
### ----------------------------------------------------
### -- App::Crag
### -- Licenses: Artistic-2.0
### -- Authors: librasteve
### -- File: lib/App/Crag.rakumod
### ----------------------------------------------------
unit module App::Crag:ver<0.0.25>:auth<zef:librasteve>;
use Slang::Roman;
use Slang::NumberBase;
... |
### ----------------------------------------------------
### -- App::Crag
### -- Licenses: Artistic-2.0
### -- Authors: librasteve
### -- File: .idea/vcs.xml
### ----------------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
... |
### ----------------------------------------------------
### -- App::Crag
### -- Licenses: Artistic-2.0
### -- Authors: librasteve
### -- File: .idea/modules.xml
### ----------------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager"... |
### ----------------------------------------------------
### -- App::Crag
### -- Licenses: Artistic-2.0
### -- Authors: librasteve
### -- File: .idea/misc.xml
### ----------------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="JsBuildToolPackageJson" ... |
### ----------------------------------------------------
### -- App::Doc-N-Save
### -- Licenses: GPL-3.0-or-later
### -- Authors: Francis Grizzly Smit <grizzly@smit.id.au>
### -- File: META6.json
### ----------------------------------------------------
{
"name" : "App::Doc-N-Save",
"description" : "A collection... |
### ----------------------------------------------------
### -- App::Doc-N-Save
### -- Licenses: GPL-3.0-or-later
### -- Authors: Francis Grizzly Smit <grizzly@smit.id.au>
### -- File: LICENSE
### ----------------------------------------------------
GNU GENERAL PUBLIC LICENSE
... |
### ----------------------------------------------------
### -- App::Doc-N-Save
### -- Licenses: GPL-3.0-or-later
### -- Authors: Francis Grizzly Smit <grizzly@smit.id.au>
### -- File: .doc-n-save.json
### ----------------------------------------------------
{
"separate-markdown-files": false,
"bin": "bin",
... |
### ----------------------------------------------------
### -- App::Doc-N-Save
### -- Licenses: GPL-3.0-or-later
### -- Authors: Francis Grizzly Smit <grizzly@smit.id.au>
### -- File: README.md
### ----------------------------------------------------
Doc-N-Save
===========
Table of Contents
-----------------
* [N... |
### ----------------------------------------------------
### -- App::Doc-N-Save
### -- Licenses: GPL-3.0-or-later
### -- Authors: Francis Grizzly Smit <grizzly@smit.id.au>
### -- File: bin/doc-n-save.raku
### ----------------------------------------------------
### -- Chunk 1 of 2
#!/usr/bin/env raku
use v6;
use JSON::... |
### ----------------------------------------------------
### -- App::Doc-N-Save
### -- Licenses: GPL-3.0-or-later
### -- Authors: Francis Grizzly Smit <grizzly@smit.id.au>
### -- File: bin/doc-n-save.raku
### ----------------------------------------------------
### -- Chunk 2 of 2
:rakudoc', Str:D :d(:$docs) is copy = ... |
### ----------------------------------------------------
### -- App::Doc-N-Save
### -- Licenses: GPL-3.0-or-later
### -- Authors: Francis Grizzly Smit <grizzly@smit.id.au>
### -- File: bin/mk-raku-dirs.raku
### ----------------------------------------------------
#!/usr/bin/env raku
use v6;
use JSON::Fast;
my %*SUB-MA... |
### ----------------------------------------------------
### -- App::Doc-N-Save
### -- Licenses: GPL-3.0-or-later
### -- Authors: Francis Grizzly Smit <grizzly@smit.id.au>
### -- File: bin/release-d.raku
### ----------------------------------------------------
#!/usr/bin/env raku
use JSON::Fast;
=begin pod
=head2 rel... |
### ----------------------------------------------------
### -- App::Doc-N-Save
### -- Licenses: GPL-3.0-or-later
### -- Authors: Francis Grizzly Smit <grizzly@smit.id.au>
### -- File: bin/release.raku
### ----------------------------------------------------
#!/usr/bin/env raku
use JSON::Fast;
=begin pod
=head2 relea... |
### ----------------------------------------------------
### -- App::Doc-N-Save
### -- Licenses: GPL-3.0-or-later
### -- Authors: Francis Grizzly Smit <grizzly@smit.id.au>
### -- File: t/001-Meta-test.rakutest
### ----------------------------------------------------
use v6;
use lib 'lib';
use Test;
plan 1;
constant A... |
### ----------------------------------------------------
### -- App::Ecosystems
### -- Licenses: Artistic-2.0
### -- Authors: Elizabeth Mattijsen
### -- File: META6.json
### ----------------------------------------------------
{
"auth": "zef:lizmat",
"authors": [
"Elizabeth Mattijsen"
],
"build-depends": [
... |
### ----------------------------------------------------
### -- App::Ecosystems
### -- Licenses: Artistic-2.0
### -- Authors: Elizabeth Mattijsen
### -- File: LICENSE
### ----------------------------------------------------
The Artistic License 2.0
Copyright (c) 2000-2006, The Perl Foundation.
Ever... |
### ----------------------------------------------------
### -- App::Ecosystems
### -- Licenses: Artistic-2.0
### -- Authors: Elizabeth Mattijsen
### -- File: README.md
### ----------------------------------------------------
[ 2007 Free... |
### ----------------------------------------------------
### -- App::FindSource
### -- Licenses: GPL
### -- Authors: Loren
### -- File: .appveyor.yml
### ----------------------------------------------------
os: Visual Studio 2015
platform: x64
install:
- '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd... |
### ----------------------------------------------------
### -- App::FindSource
### -- Licenses: GPL
### -- Authors: Loren
### -- File: README.md
### ----------------------------------------------------
# perl6-app-findsource
Find your source file easily.
# USAGE
```
$ fs -h
Usage:
/ho... |
### ----------------------------------------------------
### -- App::FindSource
### -- Licenses: GPL
### -- Authors: Loren
### -- File: .travis.yml
### ----------------------------------------------------
language: perl6
perl6:
- latest
install:
- rakudobrew build zef
- zef install .
|
### ----------------------------------------------------
### -- App::FindSource
### -- Licenses: GPL
### -- Authors: Loren
### -- File: config/cpp.json
### ----------------------------------------------------
{
"option" : [
{
"short" : "c",
"value" : [ "c" ],
"annotation" : "c source file extension list. "
... |
### ----------------------------------------------------
### -- App::FindSource
### -- Licenses: GPL
### -- Authors: Loren
### -- File: config/make.json
### ----------------------------------------------------
{
"option" : [
{
"short" : "w",
"value" : [ "Makefile", "makefile" ],
"annotation" : ""
},
{
... |
### ----------------------------------------------------
### -- App::FindSource
### -- Licenses: GPL
### -- Authors: Loren
### -- File: config/cfg.json
### ----------------------------------------------------
{
"option" : [
{
"short" : "cfg",
"value" : [
"config",
"cfg",
"ini",
"json",
"xml... |
### ----------------------------------------------------
### -- App::FindSource
### -- Licenses: GPL
### -- Authors: Loren
### -- File: config/perl.json
### ----------------------------------------------------
{
"option" : [
{
"short" : "p5",
"value" : [ "pl", "pm" ],
"annotation" : "perl5 source and module... |
### ----------------------------------------------------
### -- App::FindSource
### -- Licenses: GPL
### -- Authors: Loren
### -- File: t/01-load.t
### ----------------------------------------------------
use Test;
use Config::Searcher;
plan 1;
ok True, "load ok!";
|
### ----------------------------------------------------
### -- App::GPTrixie
### -- Licenses: Artistic-2.0
### -- Authors: Sylvain 'Skarsnik' Colinet <scolinet@gmail.com>
### -- File: META6.json
### ----------------------------------------------------
{
"perl" : "6.*",
"name" : "App::GPTrixie... |
### ----------------------------------------------------
### -- App::GPTrixie
### -- Licenses: Artistic-2.0
### -- Authors: Sylvain 'Skarsnik' Colinet <scolinet@gmail.com>
### -- File: LICENSE
### ----------------------------------------------------
The Artistic License 2.0
Copyright (c) 2000-2006, The P... |
### ----------------------------------------------------
### -- App::GPTrixie
### -- Licenses: Artistic-2.0
### -- Authors: Sylvain 'Skarsnik' Colinet <scolinet@gmail.com>
### -- File: README.md
### ----------------------------------------------------
# GPTrixie (The Great and Powerful Trixie)
A tool to generate Nativ... |
### ----------------------------------------------------
### -- App::GPTrixie
### -- Licenses: Artistic-2.0
### -- Authors: Sylvain 'Skarsnik' Colinet <scolinet@gmail.com>
### -- File: .travis.yml
### ----------------------------------------------------
language: perl6
env:
- PERL=/usr/bin/perl
perl6:
- latest... |
### ----------------------------------------------------
### -- App::GPTrixie
### -- Licenses: Artistic-2.0
### -- Authors: Sylvain 'Skarsnik' Colinet <scolinet@gmail.com>
### -- File: rt/00-test-meta.t
### ----------------------------------------------------
use v6;
use Test;
use Test::META;
plan 1;
# That's it
met... |
### ----------------------------------------------------
### -- App::GPTrixie
### -- Licenses: Artistic-2.0
### -- Authors: Sylvain 'Skarsnik' Colinet <scolinet@gmail.com>
### -- File: examples/fakeoo.ini
### ----------------------------------------------------
[OOC]
ctypename = FakeObject
perltypename = FakeObject
met... |
### ----------------------------------------------------
### -- App::Game::Concentration
### -- Licenses: Artistic-2.0
### -- Authors: JJ Merelo
### -- File: META6.json
### ----------------------------------------------------
{
"authors" : [
"JJ Merelo"
],
"build-depends" : [ ],
"depends" : [ ],
"descript... |
### ----------------------------------------------------
### -- App::Game::Concentration
### -- Licenses: Artistic-2.0
### -- Authors: JJ Merelo
### -- File: LICENSE
### ----------------------------------------------------
The Artistic License 2.0
Copyright (c) 2000-2006, The Perl Foundation.
Every... |
### ----------------------------------------------------
### -- App::Game::Concentration
### -- Licenses: Artistic-2.0
### -- Authors: JJ Merelo
### -- File: README.md
### ----------------------------------------------------
[](https://trav... |
### ----------------------------------------------------
### -- App::Game::Concentration
### -- Licenses: Artistic-2.0
### -- Authors: JJ Merelo
### -- File: .travis.yml
### ----------------------------------------------------
language: minimal
services:
- docker
install:
- docker pull jjmerelo/test-perl6
- doc... |
### ----------------------------------------------------
### -- App::Game::Concentration
### -- Licenses: Artistic-2.0
### -- Authors: JJ Merelo
### -- File: dist.ini
### ----------------------------------------------------
name = App-Game-Concentration
[ReadmeFromPod]
enable = false
filename = lib/App/Game/Concentrat... |
### ----------------------------------------------------
### -- App::Game::Concentration
### -- Licenses: Artistic-2.0
### -- Authors: JJ Merelo
### -- File: t/00-role.t
### ----------------------------------------------------
use v6.c;
use Test;
use Game::Concentration::Role;
my @deck = (("A", 2..10, <J Q K>).flat X... |
### ----------------------------------------------------
### -- App::Game::Concentration
### -- Licenses: Artistic-2.0
### -- Authors: JJ Merelo
### -- File: t/01-basic.t
### ----------------------------------------------------
use v6.c;
use Test;
use App::Game::Concentration;
my App::Game::Concentration $cards .= new... |
### ----------------------------------------------------
### -- App::Gitstatus
### -- Licenses: Artistic-2.0
### -- Authors: Tom Browder
### -- File: META6.json
### ----------------------------------------------------
{
"auth": "zef:tbrowder",
"authors": [
"Tom Browder"
],
"build-depends": [
],
"depends... |
### ----------------------------------------------------
### -- App::Gitstatus
### -- Licenses: Artistic-2.0
### -- Authors: Tom Browder
### -- File: LICENSE
### ----------------------------------------------------
The Artistic License 2.0
Copyright (c) 2000-2006, The Perl Foundation.
Everyone is p... |
### ----------------------------------------------------
### -- App::Gitstatus
### -- Licenses: Artistic-2.0
### -- Authors: Tom Browder
### -- File: README.md
### ----------------------------------------------------
[](ht... |
### ----------------------------------------------------
### -- App::Gitstatus
### -- Licenses: Artistic-2.0
### -- Authors: Tom Browder
### -- File: dist.ini
### ----------------------------------------------------
name = App-Gitstatus
[ReadmeFromPod]
filename = docs/README.rakudoc
[UploadToZef]
[Badges]
provider =... |
### ----------------------------------------------------
### -- App::Gitstatus
### -- Licenses: Artistic-2.0
### -- Authors: Tom Browder
### -- File: t/01-bin-prog.rakutest
### ----------------------------------------------------
use Test;
use Git::Status;
use Proc::Easier;
plan 1;
my ($exec-args, $res);
lives-ok {
... |
### ----------------------------------------------------
### -- App::Gitstatus
### -- Licenses: Artistic-2.0
### -- Authors: Tom Browder
### -- File: lib/App/Gitstatus.rakumod
### ----------------------------------------------------
unit module App::Gitstatus;
use File::Find;
use Git::Status;
sub run-program($dir, @*... |
### ----------------------------------------------------
### -- App::Heater
### -- Licenses: Artistic-2.0
### -- Authors: Joelle Maslak
### -- File: CODE_OF_CONDUCT.md
### ----------------------------------------------------
# Contributor Covenant Code of Conduct
## Our Pledge
In the interest of fostering an open and... |
### ----------------------------------------------------
### -- App::Heater
### -- Licenses: Artistic-2.0
### -- Authors: Joelle Maslak
### -- File: META6.json
### ----------------------------------------------------
{
"auth": "zef:jmaslak",
"authors": [
"Joelle Maslak"
],
"build-depends": [
],
"depends... |
### ----------------------------------------------------
### -- App::Heater
### -- Licenses: Artistic-2.0
### -- Authors: Joelle Maslak
### -- File: LICENSE
### ----------------------------------------------------
The Artistic License 2.0
Copyright (c) 2000-2006, The Perl Foundation.
Everyone is pe... |
### ----------------------------------------------------
### -- App::Heater
### -- Licenses: Artistic-2.0
### -- Authors: Joelle Maslak
### -- File: README.md
### ----------------------------------------------------
[](https://travis-ci.org... |
### ----------------------------------------------------
### -- App::Heater
### -- Licenses: Artistic-2.0
### -- Authors: Joelle Maslak
### -- File: .travis.yml
### ----------------------------------------------------
os:
- linux
- osx
language: perl6
perl6:
- latest
- '2018.09'
- '2018.08'
- '2018.06'
inst... |
### ----------------------------------------------------
### -- App::Heater
### -- Licenses: Artistic-2.0
### -- Authors: Joelle Maslak
### -- File: dist.ini
### ----------------------------------------------------
name = App-Heater
[ReadmeFromPod]
filename = bin/heater.raku
[UploadToZef]
|
### ----------------------------------------------------
### -- App::Heater
### -- Licenses: Artistic-2.0
### -- Authors: Joelle Maslak
### -- File: bin/heater.raku
### ----------------------------------------------------
#!/usr/bin/env perl6
use v6.c;
#
# Copyright © 2021 Joelle Maslak
# All Rights Reserved - See Lic... |
### ----------------------------------------------------
### -- App::Heater
### -- Licenses: Artistic-2.0
### -- Authors: Joelle Maslak
### -- File: t/01-basic.t
### ----------------------------------------------------
use v6.c;
use Test;
use App::Heater;
sub tests {
my $heat = App::Heater.new;
is $heat.proces... |
### ----------------------------------------------------
### -- App::IRC::Log
### -- Licenses: Artistic-2.0
### -- Authors: Elizabeth Mattijsen
### -- File: META6.json
### ----------------------------------------------------
{
"auth": "zef:lizmat",
"authors": [
"Elizabeth Mattijsen"
],
"build-depends": [
... |
### ----------------------------------------------------
### -- App::IRC::Log
### -- Licenses: Artistic-2.0
### -- Authors: Elizabeth Mattijsen
### -- File: LICENSE
### ----------------------------------------------------
The Artistic License 2.0
Copyright (c) 2000-2006, The Perl Foundation.
Everyo... |
### ----------------------------------------------------
### -- App::IRC::Log
### -- Licenses: Artistic-2.0
### -- Authors: Elizabeth Mattijsen
### -- File: pages.md
### ----------------------------------------------------
# User visible endpoints
## /home.html
The entry page. Lists the available channels and some g... |
### ----------------------------------------------------
### -- App::IRC::Log
### -- Licenses: Artistic-2.0
### -- Authors: Elizabeth Mattijsen
### -- File: README.md
### ----------------------------------------------------
[](https://gith... |
### ----------------------------------------------------
### -- App::IRC::Log
### -- Licenses: Artistic-2.0
### -- Authors: Elizabeth Mattijsen
### -- File: dist.ini
### ----------------------------------------------------
name = App-IRC-Log
[ReadmeFromPod]
; enable = false
filename = lib/App/IRC/Log.rakumod
[PruneFi... |
### ----------------------------------------------------
### -- App::IRC::Log
### -- Licenses: Artistic-2.0
### -- Authors: Elizabeth Mattijsen
### -- File: t/01-basic.rakutest
### ----------------------------------------------------
use Test;
use App::IRC::Log;
pass "replace me";
done-testing;
|
### ----------------------------------------------------
### -- App::IRC::Log
### -- Licenses: Artistic-2.0
### -- Authors: Elizabeth Mattijsen
### -- File: lib/App/IRC/Log.rakumod
### ----------------------------------------------------
### -- Chunk 1 of 2
use Array::Sorted::Util:ver<0.0.9>:auth<zef:lizmat>;
use Cro::... |
### ----------------------------------------------------
### -- App::IRC::Log
### -- Licenses: Artistic-2.0
### -- Authors: Elizabeth Mattijsen
### -- File: lib/App/IRC/Log.rakumod
### ----------------------------------------------------
### -- Chunk 2 of 2
}
$html
}
}
# Return an IO objec... |
### ----------------------------------------------------
### -- App::InstallerMaker::WiX
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: META6.json
### ----------------------------------------------------
{
"auth": "zef:raku-community-modules",
"author": "Jonathan Worthington",
"build-depends": [
],... |
### ----------------------------------------------------
### -- App::InstallerMaker::WiX
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: LICENSE
### ----------------------------------------------------
The Artistic License 2.0
Copyright (c) 2000-2006, The Perl Foundation.... |
### ----------------------------------------------------
### -- App::InstallerMaker::WiX
### -- Licenses: Artistic-2.0
### -- Authors:
### -- File: README.md
### ----------------------------------------------------
[![Actions Status](https://github.com/raku-community-modules/App-InstallerMaker-WiX/actions/workflows/wi... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.