ratyrate icon indicating copy to clipboard operation
ratyrate copied to clipboard

:star: A Ruby Gem that wraps the functionality of jQuery Raty library, and provides optional IMDB style rating.

Results 101 ratyrate issues
Sort by recently updated
recently updated
newest added

I have my models as: ``` class Article < ActiveRecord::Base has_attached_file :avatar, :styles => { :medium => "300x300>", :thumb => "100x100>" }, :default_url => "/images/:style/missing.png" has_many :comments, dependent: :destroy validates...

help wanted

When a user wants to rate smth he usually sees not shaded stars. For now I see other ratings of the product (rateable in my case is a product) Is...

I see the issue of the stars not working when deploying to Heroku.That's my current situation also. One of the solutions posted has a fix for changing the jquery.raty.js file...

Got problems with STI twice, because you using something like this in your code: object.class, but when I working with STI I need it to be: object.class.base_class. First of all...

Hi there, Do you know how can I find all object that has says 4 stars and above?

Trying to get this to work with ActiveAdmin but drawing a lot of blanks. If anyone has successfully added it can you please give us a rundown on how it...

While certain options/symbols such as :star work, certain options are not functioning for me such as :enable_half (false doesn't work for me), and :can_change (true doesn't work for me). Also,...

Average function is quite incorrect. It doesn't consider unrated dimensions. Unrated dimensions are literally zero and thus it should be consider. ``` ruby def calculate_overall_average rating = Rate.where(rateable: self).pluck('stars') (rating.reduce(:+).to_f...

enhancement

It has name conflict with https://github.com/RubyMoney/money gem. Throws ActiveRecord::DangerousAttributeError rate is defined by Active Record. Check to make sure that you don't have an attribute or method with the same...

enhancement

How would I go about displaying the overall score of a post? The code I have currently on my page is... *with "idea" being a ratable field for post However...