LikeDislike (Like or UnLike)
Like Dislike is a Ruby gem it provides facebook or youtube kind of like and dislike functionality with both frontend and backend features.
It works with the dependency of acts_as_votable gem for more details acts_as_votable
##Setup
Gem Installation
Add this line to your application's Gemfile:
gem 'like_dislike'
And then execute:
$ bundle
Database Migration
Create migration for Votes polymorphic table for vote entries for all the resource
rails g like_dislike:migrationFor Caching and finding the vote counts easily, vote counts can be maintained on the resource level run this.
rails g like_dislike:migration TableNameeg:
rails g like_dislike:migration Post
rails g like_dislike:migration CommentFinally run:
rake db:migrate##Usage
Add below code in you Votable Model reesource.
acts_as_votableFor eg:
class Comment < ActiveRecord::Base
acts_as_votable
endAdd below code in your Voter Resource Model resource.
acts_as_voterFor eg:
class User < ActiveRecord::Base
acts_as_voter
endrequire the file in javascript and stylesheet in application:
#in application.js
//= require like_dislike
#in application.css
*= require like_dislikeHere the ultimate things comes, add this line wherever you want like and dislike button want to enable with resource:
<%= like_unlike_button(resource) %>For eg:
#bookmark is the object
<%= like_unlike_button(bookmark) %> Contributing
- Fork it ( https://github.com/[my-github-username]/like_dislike/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request