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
Search Repo:
name age message
folder History.txt Mon Mar 31 16:12:54 -0700 2008 renamed to recommendable [(no author)]
folder License.txt Mon Mar 31 16:12:54 -0700 2008 renamed to recommendable [(no author)]
folder Manifest.txt Mon Mar 31 16:12:54 -0700 2008 renamed to recommendable [(no author)]
folder README.txt Tue Apr 08 16:20:44 -0700 2008 Messing with git configs, updating README to de... [dancroak]
folder Rakefile Mon Mar 31 16:12:54 -0700 2008 renamed to recommendable [(no author)]
folder config/ Mon Mar 31 16:12:54 -0700 2008 renamed to recommendable [(no author)]
folder generators/ Tue Apr 01 18:07:25 -0700 2008 recommendable macro passing tests [(no author)]
folder init.rb Tue Apr 01 18:07:49 -0700 2008 we do not know why this is here [(no author)]
folder lib/ Tue Apr 01 18:11:27 -0700 2008 all conditions in similar query no longer hard-... [(no author)]
folder log/ Mon Mar 31 16:12:54 -0700 2008 renamed to recommendable [(no author)]
folder notes Tue Apr 01 18:07:25 -0700 2008 recommendable macro passing tests [(no author)]
folder script/ Mon Mar 31 16:12:54 -0700 2008 renamed to recommendable [(no author)]
folder setup.rb Mon Mar 31 16:12:54 -0700 2008 renamed to recommendable [(no author)]
folder tasks/ Mon Mar 31 16:12:54 -0700 2008 renamed to recommendable [(no author)]
folder test/ Tue Apr 01 18:07:25 -0700 2008 recommendable macro passing tests [(no author)]
folder website/ Mon Mar 31 16:12:54 -0700 2008 renamed to recommendable [(no author)]
README.txt
== RELEASE:

This has not been used in a production app yet.
It is alpha software.

== DESCRIPTION:

recommendable is a Ruby gem which adds simple 
item-to-item collaborative filtering to 
ActiveRecord-based apps.

It creates a Similar#{ModelName} model and migration for
the associated 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.

== USAGE:

cd RAILS_ROOT
./script/generate recommendable RECOMMENDABLEMODEL

== REQUIREMENTS:

* ActiveRecord

(The MIT License)

Copyright (c) 2008 Dan Croak, Josh Nichols, Jason Morrison, and
the Boston.rb group.

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.