Search code examples
ruby-on-railsrubygemsratingraterating-system

Ruby on Rails Rating/Liking Gem


i'm searching Days now for a Rate/Like Gem that allows me to rate/like an image just like the Facebook Like. I'm having that button hovering over my image:

enter image description here

and it would be nice if could access the Like Count and Display it. I would not post this if i didn't really searched it, but after DAYS, maybe someone knows a quick solution to my Problem.

Thanks


Solution

  • Did you tried acts_as_votable gem? if no, that's what you need

    Usage:

    class Pin < ActiveRecord::Base
      # ...
      acts_as_votable
    end
    
    class User < ActiveRecord::Base
      #...
      acts_as_voter
    end
    

    Helpful links