Created
September 30, 2017 15:27
-
-
Save Whateverable/83b13b98f160c958826c8837a3a428d9 to your computer and use it in GitHub Desktop.
quotable6
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
synopsebot.*design.perl6.org |
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 IRC::Client; .run with IRC::Client.new: :nick<synopsebot> :host<irc.freenode.net> :channels<#perl6 #perl6-dev> :debug :plugins(class { multi method irc-privmsg-channel ($ where /<< 'RT#' $<id>=\d+ >>/) { "https://rt.perl.org/Ticket/Display.html?id=$<id>" }; multi method irc-privmsg-channel ($ where /<< 'S99:' $<term>=\S+ >>/) { "Link: http://design.perl6.org/S99.html#$<term>" } }) | |
masak: that link implies that synopsebot already should be pointing to design.perl6.org | |
tadzik: synopsebot still spits out links to perlcabal.org, not design.perl6.org |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment