Skip to content

Instantly share code, notes, and snippets.

@firstspring1845
Last active August 29, 2015 13:57
Show Gist options
  • Save firstspring1845/9643867 to your computer and use it in GitHub Desktop.
Save firstspring1845/9643867 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
Plugin.create(:fav_rt_reply) do
command(:fav_rt_reply,
name: 'ふぁぼってRTして空リプ',
condition: Plugin::Command[:HasOneMessage],
visible: true,
role: :timeline) do |opt|
message = opt.messages.first
message.favorite(true)
message.retweet
Service.primary.post(:message => "@#{message.user.idname}", :replyto => message)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment