Skip to content

Instantly share code, notes, and snippets.

@toshia
Created March 8, 2013 15:24
Show Gist options
  • Select an option

  • Save toshia/5117193 to your computer and use it in GitHub Desktop.

Select an option

Save toshia/5117193 to your computer and use it in GitHub Desktop.
Plugin.create :twihai_achievements do
defachievement(:red_fav,
description: "1つのツイートに5ふぁぼ以上された",
hint: "おもしろツイートで5fav以上もらおう"
) do |achievement|
on_favorite do |service, user, message|
if message.user.is_me? and message.favorited_by.size >= 5
achievement.take! end end end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment