recommendify 0.3.6 → 0.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ext/recommendify.c +3 -3
- data/recommendify.gemspec +1 -1
- metadata +7 -8
data/ext/recommendify.c
CHANGED
|
@@ -24,7 +24,7 @@ int main(int argc, char **argv){
|
|
|
24
24
|
char* cur_batch;
|
|
25
25
|
char *iikey;
|
|
26
26
|
|
|
27
|
-
int batch_size =
|
|
27
|
+
int batch_size = 100; /* FIXPAUL: make option */
|
|
28
28
|
int maxItems = 50; /* FIXPAUL: make option */
|
|
29
29
|
|
|
30
30
|
struct {
|
|
@@ -99,8 +99,8 @@ int main(int argc, char **argv){
|
|
|
99
99
|
|
|
100
100
|
freeReplyObject(reply);
|
|
101
101
|
|
|
102
|
-
if(itemCount
|
|
103
|
-
printf("exit: item count is zero\n");
|
|
102
|
+
if(itemCount < 2){
|
|
103
|
+
printf("exit: item count is zero or one\n");
|
|
104
104
|
return 0;
|
|
105
105
|
}
|
|
106
106
|
|
data/recommendify.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: recommendify
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.7
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,11 +9,11 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-03-
|
|
12
|
+
date: 2012-03-20 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: redis
|
|
16
|
-
requirement: &
|
|
16
|
+
requirement: &17882740 !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
@@ -21,10 +21,10 @@ dependencies:
|
|
|
21
21
|
version: 2.2.2
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements: *
|
|
24
|
+
version_requirements: *17882740
|
|
25
25
|
- !ruby/object:Gem::Dependency
|
|
26
26
|
name: rspec
|
|
27
|
-
requirement: &
|
|
27
|
+
requirement: &17881820 !ruby/object:Gem::Requirement
|
|
28
28
|
none: false
|
|
29
29
|
requirements:
|
|
30
30
|
- - ~>
|
|
@@ -32,7 +32,7 @@ dependencies:
|
|
|
32
32
|
version: 2.8.0
|
|
33
33
|
type: :development
|
|
34
34
|
prerelease: false
|
|
35
|
-
version_requirements: *
|
|
35
|
+
version_requirements: *17881820
|
|
36
36
|
description: Recommendify is a distributed, incremental item-based recommendation
|
|
37
37
|
engine for binary input ratings. It's based on ruby and redis and uses an approach
|
|
38
38
|
called "Collaborative Filtering"
|
|
@@ -100,7 +100,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
100
100
|
version: '0'
|
|
101
101
|
requirements: []
|
|
102
102
|
rubyforge_project:
|
|
103
|
-
rubygems_version: 1.8.
|
|
103
|
+
rubygems_version: 1.8.17
|
|
104
104
|
signing_key:
|
|
105
105
|
specification_version: 3
|
|
106
106
|
summary: ruby/redis based recommendation engine (collaborative filtering)
|
|
@@ -115,4 +115,3 @@ test_files:
|
|
|
115
115
|
- spec/similarity_matrix_spec.rb
|
|
116
116
|
- spec/sparse_matrix_spec.rb
|
|
117
117
|
- spec/spec_helper.rb
|
|
118
|
-
has_rdoc:
|