Skip to content

Instantly share code, notes, and snippets.

@penguin2716
Created May 3, 2015 04:22
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 penguin2716/fcf82375104b65143d68 to your computer and use it in GitHub Desktop.
Save penguin2716/fcf82375104b65143d68 to your computer and use it in GitHub Desktop.
レイバンのサングラスのspamを検知して表示しないようにするmikutterプラグイン
#-*- coding: utf-8 -*-
Plugin.create :disable_rayban_spam do
filter_show_filter do |messages|
messages.reject! do |message|
message.to_s =~ /^@|^RT/ and
message.to_s.include? "レイバンのサングラス" and
message.to_s =~ /\d+円/
end
[messages]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment