Skip to content

Instantly share code, notes, and snippets.

@glidenote
Created May 10, 2013 04:39
Show Gist options
  • Save glidenote/5552409 to your computer and use it in GitHub Desktop.
Save glidenote/5552409 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
# -*- coding: utf-8 -*-
require 'cinch'
bot = Cinch::Bot.new do
configure do |c|
c.server = "irc.freenode.net"
c.channels = ["#hogemoge"]
c.nick = 'hayashi_bot'
c.realname = 'hayashi_bot'
c.user = 'hayashi_bot'
end
on :message, /いつやる/ do |m|
m.reply "今でしょ"
end
end
bot.start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment