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
updated README
Daniel Croak (author)
Tue Apr 08 15:47:55 -0700 2008
commit  6a46a9b097894d7fdb7f4d3c82e5d62e412b896c
tree    9d4024244fcf6b4414b98c16aca832ffa54674a8
parent  3f53df0ab372935cdd99e877a2bd6715ed17d22d
...
1
2
3
4
5
6
7
8
 
 
 
9
10
11
 
 
12
13
14
...
19
20
21
22
23
24
25
26
 
27
28
 
 
29
30
31
32
33
34
35
36
37
38
 
39
40
41
42
 
 
43
44
45
...
 
 
 
 
1
2
 
 
3
4
5
6
 
 
7
8
9
10
11
...
16
17
18
 
 
 
 
 
19
20
 
21
22
23
24
25
 
 
 
 
 
 
 
26
27
28
29
 
30
31
32
33
34
0
@@ -1,14 +1,11 @@
0
-= recommendable
0
-
0
-* FIX (url)
0
-
0
 == DESCRIPTION:
0
 
0
-recommendable is a gem that adds item-to-item
0
-collaborative filtering to an ActiveRecord model.
0
+recommendable is a Ruby gem which adds simple
0
+item-to-item collaborative filtering to
0
+ActiveRecord-based apps.
0
 
0
-It creates a Similar#{ModelName} model and associaated
0
-similar_#{model_name}s table with the following columns:
0
+It creates a Similar#{ModelName} model and migration for
0
+the associated similar_#{model_name}s table with the following columns:
0
 
0
   id
0
   #{model_name}_one
0
@@ -19,27 +16,19 @@ It creates a rake task that updates the similar table,
0
 which is time-intensive and should be run via cron at
0
 off-peak hours for your Rails app.
0
 
0
-== FEATURES/PROBLEMS:
0
-
0
-* FIX (list of features or problems)
0
-
0
-== SYNOPSIS:
0
+== USAGE:
0
 
0
- FIX (code sample of usage)
0
+cd RAILS_ROOT
0
+./script/generate recommendable RECOMMENDABLEMODEL
0
 
0
 == REQUIREMENTS:
0
 
0
-* FIX (list of requirements)
0
-
0
-== INSTALL:
0
-
0
-* FIX (sudo gem install, anything else)
0
-
0
-== LICENSE:
0
+* ActiveRecord
0
 
0
 (The MIT License)
0
 
0
-Copyright (c) 2008 FIX
0
+Copyright (c) 2008 Dan Croak, Josh Nichols, Jason Morrison, and
0
+the Boston.rb group.
0
 
0
 Permission is hereby granted, free of charge, to any person obtaining
0
 a copy of this software and associated documentation files (the

Comments

    No one has commented yet.