Skip to content

Instantly share code, notes, and snippets.

@penguin2716
Created April 29, 2012 13:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save penguin2716/2550278 to your computer and use it in GitHub Desktop.
Save penguin2716/2550278 to your computer and use it in GitHub Desktop.
「みくっ」とだけつぶやくとみくみくになるmikutterプラグイン
Plugin.create :automikumiku do
on_posted do |s,ms|
ms.each do |m|
if m.message.to_s == "みくっ"
Thread.new do
5.times do |x|
s.post :message => "#{"みく" * (x+2)}"
sleep 1
end
end
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment