collaborative_filtering 0.1.0 → 0.2.0
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.
- checksums.yaml +4 -4
- data/.gitignore +2 -0
- data/README.md +4 -4
- data/collaborative_filtering.gemspec +1 -0
- data/lib/collaborative_filtering/version.rb +1 -1
- metadata +15 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1ade66a8857197f7a5a6c1610571af5a534283cd
|
|
4
|
+
data.tar.gz: ddc80effecb3c1bb608c6572cce6dc332c7de165
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 052cf06b834652e619d905c108b9e4bb5f6540ecc04be289085a9e226e34125706835f21cf6de972268a894a6a3a96a9282e7e1e55abba1065737d8b116716f2
|
|
7
|
+
data.tar.gz: 0afe31ede857197fb55224054d3b4d0a2ff04914ec6a508bf17b5a528ba8c54de2d45b944adb066ae3492d4245e8c5144a5dfc92bc8fcd278ea9b2e59c5e35f5
|
data/.gitignore
CHANGED
data/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# CollaborativeFiltering
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://travis-ci.org/8398a7/collaborative_filtering)
|
|
4
|
+
[](https://codeclimate.com/github/8398a7/collaborative_filtering)
|
|
5
|
+
[](https://coveralls.io/r/8398a7/collaborative_filtering?branch=master)
|
|
4
6
|
|
|
5
|
-
|
|
7
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/collaborative_filtering`. To experiment with that code, run `bin/console` for an interactive prompt.
|
|
6
8
|
|
|
7
9
|
## Installation
|
|
8
10
|
|
|
@@ -22,8 +24,6 @@ Or install it yourself as:
|
|
|
22
24
|
|
|
23
25
|
## Usage
|
|
24
26
|
|
|
25
|
-
TODO: Write usage instructions here
|
|
26
|
-
|
|
27
27
|
## Development
|
|
28
28
|
|
|
29
29
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: collaborative_filtering
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shoya TANAKA
|
|
@@ -52,6 +52,20 @@ dependencies:
|
|
|
52
52
|
- - ">="
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '0'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: coveralls
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - ">="
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0'
|
|
55
69
|
description: It provides you easy way to calculate collaborative filtering using pearson
|
|
56
70
|
correlation coefficient.
|
|
57
71
|
email:
|