ratyrate icon indicating copy to clipboard operation
ratyrate copied to clipboard

Overall Score

Open sanjams2 opened this issue 10 years ago • 1 comments

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.

sanjams2 avatar Feb 12 '15 18:02 sanjams2

<%= @post.average("idea").nil? ? '0' : @post.average("idea").avg %>

ghost avatar Feb 16 '15 20:02 ghost