Skip to content

Instantly share code, notes, and snippets.

@thbishop
Created April 9, 2011 01:57
Show Gist options
  • Select an option

  • Save thbishop/911034 to your computer and use it in GitHub Desktop.

Select an option

Save thbishop/911034 to your computer and use it in GitHub Desktop.
module MyBot
module Plugins
class Hello
include ::Cinch::Plugin
match "hello"
def execute(m)
m.reply "Hello, #{m.user.nick}"
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment