Skip to content

Instantly share code, notes, and snippets.

@tumugin
Created March 1, 2014 07:53
Show Gist options
  • Save tumugin/9286698 to your computer and use it in GitHub Desktop.
Save tumugin/9286698 to your computer and use it in GitHub Desktop.
一発でふぁぼってRTするmikutterプラグイン
# -*- coding: utf-8 -*-
Plugin.create(:favort) do
command(:favort,
name: "ふぁぼってRT",
condition: Plugin::Command[:CanReTweetAll],
visible: true,
role: :timeline ) do |m|
m.messages.map do |msg|
favort(msg.message)
end
end
def favort(message)
message.favorite(true)
message.retweet
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment