Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save thbishop/911040 to your computer and use it in GitHub Desktop.
require 'cinch'
module MyBot
module Plugins
class Foo
include ::Cinch::Plugin
match "foo"
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