0.0
No commit activity in last 3 years
No release in over 3 years
Easily trigger scoring from within your models
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

~> 3.2.6
 Project Readme

Competition

On the model you want to keep score of, usually your User model, put this code:

has_score

On the model that awards score put this code:

keeps_score :if => Proc.new { true },
            :on => [:create],
            :amount => Proc.new { |tc| 1 },
            :for => Proc.new {|o| o.user }

then goto /competition/leaderboard and viola!