Skip to content

Instantly share code, notes, and snippets.

@half-ogre
Created December 17, 2011 00:58
Show Gist options
  • Save half-ogre/1488735 to your computer and use it in GitHub Desktop.
Save half-ogre/1488735 to your computer and use it in GitHub Desktop.
A sample Sing-Along event handler
on :say do
nick, text = connection[:nick], data[:text]
raise NickRequiredError if nick.nil?
broadcast :said, { :nick => nick, :text => text }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment