public
Rubygem
Description: Alpha software / experimental - A Ruby gem which adds simple item-to-item collaborative filtering to ActiveRecord-based apps.
Clone URL: git://github.com/dancroak/recommendable.git
(no author) (author)
Mon Mar 31 22:41:19 -0700 2008
commit  d24ed8e25cb7ec3514500fbe3e9a3a253e4a8a87
tree    f6925517140a9e9bdd8cf12e90e9b11f6ead1bcb
parent  8fc5a3a7122de0afbcc336907fce6a429a9c47c0
name age message
file History.txt Mon Mar 31 16:12:54 -0700 2008 renamed to recommendable [(no author)]
file License.txt Mon Mar 31 16:12:54 -0700 2008 renamed to recommendable [(no author)]
file Manifest.txt Mon Mar 31 16:12:54 -0700 2008 renamed to recommendable [(no author)]
file README.txt Mon Mar 31 16:40:01 -0700 2008 setting up test environment [(no author)]
file Rakefile Mon Mar 31 16:12:54 -0700 2008 renamed to recommendable [(no author)]
directory config/ Mon Mar 31 16:12:54 -0700 2008 renamed to recommendable [(no author)]
directory generators/ Mon Mar 31 22:41:19 -0700 2008 going the has_many_polymorphs route [(no author)]
directory lib/ Mon Mar 31 22:41:19 -0700 2008 going the has_many_polymorphs route [(no author)]
directory log/ Mon Mar 31 16:12:54 -0700 2008 renamed to recommendable [(no author)]
file notes Mon Mar 31 18:09:48 -0700 2008 added scaffold for task [(no author)]
directory script/ Mon Mar 31 16:12:54 -0700 2008 renamed to recommendable [(no author)]
file setup.rb Mon Mar 31 16:12:54 -0700 2008 renamed to recommendable [(no author)]
directory tasks/ Mon Mar 31 16:12:54 -0700 2008 renamed to recommendable [(no author)]
directory test/ Mon Mar 31 16:40:01 -0700 2008 setting up test environment [(no author)]
directory website/ Mon Mar 31 16:12:54 -0700 2008 renamed to recommendable [(no author)]
README.txt
= recommendable

* FIX (url)

== DESCRIPTION:

recommendable is a gem that adds item-to-item
collaborative filtering to an ActiveRecord model.

It creates a Similar#{ModelName} model and associaated
similar_#{model_name}s table with the following columns:

  id
  #{model_name}_one
  #{model_name}_two
  score

It creates a rake task that updates the similar table, 
which is time-intensive and should be run via cron at
off-peak hours for your Rails app.

== FEATURES/PROBLEMS:

* FIX (list of features or problems)

== SYNOPSIS:

  FIX (code sample of usage)

== REQUIREMENTS:

* FIX (list of requirements)

== INSTALL:

* FIX (sudo gem install, anything else)

== LICENSE:

(The MIT License)

Copyright (c) 2008 FIX

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.