ratyrate
ratyrate copied to clipboard
Overall Score
How would I go about displaying the overall score of a post? The code I have currently on my page is... <%= post.average("idea") %>
*with "idea" being a ratable field for post However on the actual browser it shows up as...
RatingCache:0x007f81c4b32fe8
I dont know if this is an issue of my method being incorrect or something to do with the database. Awesome Gem though. Thanks.
<%= @post.average("idea").nil? ? '0' : @post.average("idea").avg %>