Created
December 10, 2011 07:51
-
-
Save tomykaira/1454796 to your computer and use it in GitHub Desktop.
すべての意識高いタグを目に入る前に消し去りたい!
This file contains 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(:kill_tag) do | |
filter_update do |service, msgs| | |
[service, msgs.select{ |m| m.to_s !~ /#/ }] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment