Skip to content

Instantly share code, notes, and snippets.

@toshia
Created August 28, 2015 10:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save toshia/9b45fd88374234832dbe to your computer and use it in GitHub Desktop.
Save toshia/9b45fd88374234832dbe to your computer and use it in GitHub Desktop.
オレ的ゲーム速報がTwitterでSPAM扱いされてるのをなんとかするプラグイン
# -*- coding: utf-8 -*-
Plugin.create(:jin115) do
exclude_url = /jin115\.com/
filter_show_filter do |msgs|
msgs = msgs.reject{ |m| m.entity.any?{ |entity| exclude_url === entity[:url] } }
[msgs]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment