Skip to content

Instantly share code, notes, and snippets.

@firstspring1845
Created March 19, 2014 07:34
Show Gist options
  • Save firstspring1845/9637051 to your computer and use it in GitHub Desktop.
Save firstspring1845/9637051 to your computer and use it in GitHub Desktop.
えんえん
# -*- coding: utf-8 -*-
Plugin.create :enkunkun do
on_mention do |s,ms|
ms.each do |m|
if Time.now - m.message[:created] < 5 then
if m.message.to_s.split[1] == "えんえん" then
Service.primary.post(:message => "@#{m.user.idname} くんくん", :replyto => m.message)
end
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment