Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 15th, 2012  |  syntax: None  |  size: 0.27 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. class Achievement::CommentedOnce < Achievement
  2.   def self.initialize_achievement
  3.     ForumPost.after_create do |forum_post|
  4.       if forum_post.comment?
  5.         progress(forum_post.user_id,:increment => +1)
  6.       end
  7.     end
  8.   end
  9.  
  10.   def award?
  11.     true #always award
  12.   end
  13. end