Created
August 24, 2009 14:30
-
-
Save vangberg/173910 to your computer and use it in GitHub Desktop.
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
require 'rubygems' | |
require 'isaac' | |
configure do |c| | |
c.nick = "wallabotz" | |
c.server = "irc.freenode.net" | |
c.verbose = true | |
end | |
on :connect do | |
join "#awesomechannel" | |
end | |
on :channel, /foo bar/ do | |
msg "#awesomechannel", "public match!" | |
end | |
on :private, /foo bar/ do | |
msg "#awesomechannel", "private match!" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment