recommendable
recommendable copied to clipboard
:+1::-1: A recommendation engine using Likes and Dislikes for your Ruby app
Hey, for some reason when you run the following: ```ruby # models/user.rb class User < ApplicationRecord recommends :listings, :categories, :tags, :brands end ``` you get the following error after performing...
I recommend optimizing operations using redis internal functions. 1. sinterstore 2. lua scripting
This is the pull request for discussing the next major version of recommendable. These are the feature's we'd like to have for the next version: `recommendable-core` - [ ] Defines...
According to your docs and example page, this should work: ``` irb irb(main):006:0> user.recommended_thing.where('published = true') NoMethodError: undefined method `where' for # ``` Likes, recommendations, queries all work, but scoping...
Hello David! Thanks for your gem. I'm trying to reach the total likes count in my controller's method: `@length = Site.first.liked_by_count` Alas, I get error: `undefined method `liked_by_count' for #`...
Hey David, Firstly, apologies that this is a question and not an issue, per se. Thanks for the gem and the very informative, and humurous, article explaining the concepts. Well...
My `User` model `recommends :places`, but it already has an Active Record association for `recommended_places`, so I am forced to access Recommendable recommendations via: ``` ruby user.send :recommended_for, Place ```...
Let's say, for example, we are allowing users to rate songs and artists. I would like to be able to get a single, ordered list of recommendations for a user...
Hey guys, I wasn't sure if there is need in unit tests, because CalculationsTest covers all the functionality. Please let me know if you have any feedback.