Created
December 23, 2014 18:09
-
-
Save penguin2716/9b758ec0714791b4bd13 to your computer and use it in GitHub Desktop.
「いまのなし」ってつぶやいた人の直前のツイートをRTするmikutterプラグイン
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 :auto_retweet_previous_tweet do | |
tweet_before = {} | |
on_appear do |ms| | |
ms.each do |m| | |
if tweet_before[m.user] | |
tweet_before[m.user].retweet if m.to_s == "いまのなし" | |
end | |
tweet_before[m.user] = m | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment