Created
January 22, 2012 14:34
-
-
Save cosmo0920/1657233 to your computer and use it in GitHub Desktop.
自動ツイート撃退!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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