Skip to content

Instantly share code, notes, and snippets.

@tomykaira
Created December 10, 2011 07:51
Show Gist options
  • Save tomykaira/1454796 to your computer and use it in GitHub Desktop.
Save tomykaira/1454796 to your computer and use it in GitHub Desktop.
すべての意識高いタグを目に入る前に消し去りたい!
# -*- 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