-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
193 additions
and
26 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.precomp/ | ||
/IRC-Client-* | ||
/releases/ | ||
*.rakucov |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,12 +40,14 @@ DOCUMENTATION MAP | |
AUTHORS | ||
======= | ||
|
||
* Zoffix Znet (2015-2018) | ||
* Zoffix Znet | ||
|
||
* Elizabeth Mattijsen (2021-) <[email protected]> | ||
* Elizabeth Mattijsen | ||
|
||
Source can be located at: https://github.com/lizmat/IRC-Client . Comments and Pull Requests are welcome. | ||
|
||
If you like this module, or what I’m doing more generally, committing to a [small sponsorship](https://github.com/sponsors/lizmat/) would mean a great deal to me! | ||
|
||
CONTRIBUTORS | ||
============ | ||
|
||
|
@@ -58,9 +60,7 @@ COPYRIGHT AND LICENSE | |
|
||
Copyright 2015-2021 Zoffix Znet | ||
|
||
Copyright 2021-2024 Elizabeth Mattijsen | ||
|
||
If you like this module, or what I’m doing more generally, committing to a [small sponsorship](https://github.com/sponsors/lizmat/) would mean a great deal to me! | ||
Copyright 2021-2025 Elizabeth Mattijsen | ||
|
||
This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0. | ||
|
||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
=begin pod | ||
|
||
=head1 NAME | ||
|
||
IRC::Client - Extendable Internet Relay Chat client | ||
|
||
=head1 SYNOPSIS | ||
|
||
=begin code :lang<raku> | ||
|
||
use IRC::Client; | ||
use Pastebin; | ||
|
||
.run with IRC::Client.new: | ||
:host<irc.libera.chat> | ||
:channels<#rakubot #zofbot> | ||
:debug | ||
:plugins( | ||
class { method irc-to-me ($ where /hello/) { 'Hello to you too!'} } | ||
) | ||
:filters( | ||
-> $text where .chars > 200 { | ||
'The output is too large to show here. See: ' | ||
~ Pastebin.new.paste: $text; | ||
} | ||
); | ||
|
||
=end code | ||
|
||
=head1 DESCRIPTION | ||
|
||
The module provides the means to create clients to communicate with | ||
IRC (Internet Relay Chat) servers. Has support for non-blocking responses | ||
and output post-processing. | ||
|
||
=head1 DOCUMENTATION MAP | ||
|
||
* [Blog Post](https://github.com/Raku/CCR/blob/main/Remaster/Zoffix%20Znet/IRC-Client-Raku-Multi-Server-IRC-or-Awesome-Async-Interfaces-with-Raku.md) | ||
* [Basics Tutorial](https://github.com/lizmat/IRC-Client/blob/main/docs/01-basics.md) | ||
* [Event Reference](https://github.com/lizmat/IRC-Client/blob/main/docs/02-event-reference.md) | ||
* [Method Reference](https://github.com/lizmat/IRC-Client/blob/main/docs/03-method-reference.md) | ||
* [Big-Picture Behaviour](https://github.com/lizmat/IRC-Client/blob/main/docs/04-big-picture-behaviour.md) | ||
* [Examples](https://github.com/lizmat/IRC-Client/blob/main/examples/) | ||
|
||
=head1 AUTHORS | ||
|
||
=item Zoffix Znet | ||
=item Elizabeth Mattijsen | ||
|
||
Source can be located at: https://github.com/lizmat/IRC-Client . Comments and | ||
Pull Requests are welcome. | ||
|
||
If you like this module, or what I’m doing more generally, committing to a | ||
L<small sponsorship|https://github.com/sponsors/lizmat/> would mean a great | ||
deal to me! | ||
|
||
=head1 CONTRIBUTORS | ||
|
||
=item Daniel Green | ||
=item Patrick Spek | ||
|
||
=head1 COPYRIGHT AND LICENSE | ||
|
||
Copyright 2015-2021 Zoffix Znet | ||
|
||
Copyright 2021-2025 Elizabeth Mattijsen | ||
|
||
This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0. | ||
|
||
The C<META6.json> file of this distribution may be distributed and modified without restrictions or attribution. | ||
|
||
=end pod | ||
|
||
# vim: expandtab shiftwidth=4 |
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
14 changes: 8 additions & 6 deletions
14
t/release/02-multi-server.t → release/02-multi-server.rakutest
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
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
use Test::Coverage; | ||
|
||
plan 2; | ||
|
||
todo "needs more tests"; | ||
coverage-at-least 75; | ||
|
||
todo "needs more tests"; | ||
uncovered-at-most 1; | ||
|
||
source-with-coverage; | ||
|
||
report; | ||
|
||
# vim: expandtab shiftwidth=4 |