From 4402f2e29b3c8d9a9a4e95d3fab3108a7ef42954 Mon Sep 17 00:00:00 2001 From: Zoffix Znet Date: Tue, 2 Aug 2016 08:32:23 -0400 Subject: Make it easier to run examples off an arbitrary IRC server --- examples/01-uppercase-bot.p6 | 2 +- examples/02-trickster-bot.p6 | 2 +- examples/03-github-notifications.p6 | 2 +- examples/04-bash-bot.p6 | 2 +- examples/05-bash-bot-with-filter.p6 | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/01-uppercase-bot.p6 b/examples/01-uppercase-bot.p6 index d846538..c432710 100644 --- a/examples/01-uppercase-bot.p6 +++ b/examples/01-uppercase-bot.p6 @@ -2,7 +2,7 @@ use lib ; use IRC::Client; .run with IRC::Client.new: :nick - :host + :host(%*ENV // 'irc.freenode.net') :channels<#zofbot> :debug :plugins(class { method irc-to-me ($_) { .text.uc } }) diff --git a/examples/02-trickster-bot.p6 b/examples/02-trickster-bot.p6 index 178fcdd..574a797 100644 --- a/examples/02-trickster-bot.p6 +++ b/examples/02-trickster-bot.p6 @@ -13,7 +13,7 @@ class BFF { method irc-to-me ($ where /'♥'/) { 'I ♥ YOU!' } } .run with IRC::Client.new: :nick - :host + :host(%*ENV // 'irc.freenode.net') :channels<#zofbot> :debug :plugins(Trickster, BFF) diff --git a/examples/03-github-notifications.p6 b/examples/03-github-notifications.p6 index 8dec6d2..58596c6 100644 --- a/examples/03-github-notifications.p6 +++ b/examples/03-github-notifications.p6 @@ -32,7 +32,7 @@ class GitHub::Notifications does IRC::Client::Plugin { .run with IRC::Client.new: :nick - :host + :host(%*ENV // 'irc.freenode.net') :channels<#zofbot> :debug :plugins(GitHub::Notifications.new) diff --git a/examples/04-bash-bot.p6 b/examples/04-bash-bot.p6 index d3aaa4c..53baf87 100644 --- a/examples/04-bash-bot.p6 +++ b/examples/04-bash-bot.p6 @@ -20,7 +20,7 @@ class Bash { .run with IRC::Client.new: :nick - :host + :host(%*ENV // 'irc.freenode.net') :channels<#zofbot> :debug :plugins(Bash.new); diff --git a/examples/05-bash-bot-with-filter.p6 b/examples/05-bash-bot-with-filter.p6 index 730d9ea..f2aa692 100644 --- a/examples/05-bash-bot-with-filter.p6 +++ b/examples/05-bash-bot-with-filter.p6 @@ -21,7 +21,7 @@ class Bash { .run with IRC::Client.new: :nick - :host + :host(%*ENV // 'irc.freenode.net') :channels<#zofbot> :debug :plugins(Bash.new) -- cgit v1.1