Skip to content

Instantly share code, notes, and snippets.

@cosmo0920
Created January 22, 2012 14:34
Show Gist options
  • Save cosmo0920/1657233 to your computer and use it in GitHub Desktop.
Save cosmo0920/1657233 to your computer and use it in GitHub Desktop.
自動ツイート撃退!
# -*- coding: utf-8 -*-
Plugin.create(:myfilter) do
exclude_client = ["twittbot.net"]
filter_show_filter do |msgs|
msgs = msgs.select{ |m| not exclude_client.any?{ |word| m.to_s.include?(m[:source]) } }
[msgs]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment