Skip to content

Instantly share code, notes, and snippets.

@firstspring1845
Created May 2, 2014 17:44
Show Gist options
  • Save firstspring1845/93fe8fdd207cd1c778ba to your computer and use it in GitHub Desktop.
Save firstspring1845/93fe8fdd207cd1c778ba to your computer and use it in GitHub Desktop.
察して
#-*- coding: utf-8 -*-
Plugin.create :text do
on_mention do |s,ms|
ms.each do |m|
if Time.now - m.message[:created] < 5 then
if m.message.to_s =~ /.*text / then
Service.primary.post(:message => m.message.to_s.gsub(/.*text /,''))
end
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment