Skip to content

Instantly share code, notes, and snippets.

@penguin2716
Created December 23, 2014 18:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save penguin2716/9b758ec0714791b4bd13 to your computer and use it in GitHub Desktop.
Save penguin2716/9b758ec0714791b4bd13 to your computer and use it in GitHub Desktop.
「いまのなし」ってつぶやいた人の直前のツイートをRTするmikutterプラグイン
# -*- 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