Skip to content

Instantly share code, notes, and snippets.

Created December 5, 2014 06:34
Show Gist options
  • Save anonymous/dc90744f52c08522ff85 to your computer and use it in GitHub Desktop.
Save anonymous/dc90744f52c08522ff85 to your computer and use it in GitHub Desktop.
mikutterで「これきらい」を実現するプラグイン
# -*- coding: utf-8 -*-
Plugin.create :vanish do
command(:vanish_message,
name: "これきらい",
condition: Plugin::Command[:CanReplyAll],
visible: true,
role: :timeline ) do |opt|
opt.messages.each do |msg|
Plugin.call(:destroyed, [msg])
end
end
command(:vanish_user,
name: "こいつきらい",
condition: Plugin::Command[:CanReplyAll],
visible: true,
role: :timeline ) do |opt|
opt.messages.each do |msg|
Plugin.call(:destroyed, ObjectSpace.each_object(Message).to_a.select{|m| m.user == msg.user})
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment