vote up 0 vote down star

I'm getting started building a site with Rails and I would like people to be able to vote certain things with the options of "yes" or "no" or "right" or "wrong". I would also like there to be a running tally computed by percent (maybe below). Could someone tell me how I can add this functionality?

Thanks

flag

63% accept rate
What functionality? Calculating percents? That's just division. – Chuck May 25 at 0:28
Basically something like this: msdn.microsoft.com/en-us/library/… I'm just trying to add a voting section to the site and I'm really sure how to do it. – technorati.com/people/technorati May 25 at 0:46
What part are you specifically having issues with? How far have you got? (Otherwise this just looks like a write my application question). – RichH May 25 at 17:56

3 Answers

vote up 1 vote down check

I just finished up something similar.

If you'd like to see how other people have tackled this problem, just search github. There are 30 ruby repos.

I found acts_as_voteable the most helpful.

link|flag
vote up 1 vote down

Remember to build it in such a way that enforces: "one vote for one IP address". Other than that, it is straight forward and plain Mathematics.

link|flag
vote up 1 vote down

You should also take a look at 'counters' in the API, such that each vote has a value and the tallies are kept on the voted-on object (so it doesn't have to run a count every single time).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.