collaborative_filtering 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 01c9952377460bbdf3d2f574ddf7b622355f0bae
4
- data.tar.gz: 37b77bd0a2bd3b6af1e1f724b1d203027f6b0afa
3
+ metadata.gz: 1ade66a8857197f7a5a6c1610571af5a534283cd
4
+ data.tar.gz: ddc80effecb3c1bb608c6572cce6dc332c7de165
5
5
  SHA512:
6
- metadata.gz: 96d2f3d3a1a1ac1e4c6e80644ba400102ddd9a55d84ea75469239208dcf0716a6b2bb21738d9cd717f3877d74104ad9c5799c54de03a4bf3ffd204ca89e0976a
7
- data.tar.gz: c6d5b710a8cf42e71caf0f7c77aa24bee1fa1bbf62bb7cd9c50868ba7feef496dc3738dfb58d69c333766a6abe7793d54fc42d725d08cab1d2ff907e4bd3be17
6
+ metadata.gz: 052cf06b834652e619d905c108b9e4bb5f6540ecc04be289085a9e226e34125706835f21cf6de972268a894a6a3a96a9282e7e1e55abba1065737d8b116716f2
7
+ data.tar.gz: 0afe31ede857197fb55224054d3b4d0a2ff04914ec6a508bf17b5a528ba8c54de2d45b944adb066ae3492d4245e8c5144a5dfc92bc8fcd278ea9b2e59c5e35f5
data/.gitignore CHANGED
@@ -7,3 +7,5 @@
7
7
  /pkg/
8
8
  /spec/reports/
9
9
  /tmp/
10
+ /bundle
11
+ .DS_Store
data/README.md CHANGED
@@ -1,8 +1,10 @@
1
1
  # CollaborativeFiltering
2
2
 
3
- 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.
3
+ [![Build Status](https://travis-ci.org/8398a7/collaborative_filtering.svg?branch=master)](https://travis-ci.org/8398a7/collaborative_filtering)
4
+ [![Code Climate](https://codeclimate.com/github/8398a7/collaborative_filtering/badges/gpa.svg)](https://codeclimate.com/github/8398a7/collaborative_filtering)
5
+ [![Coverage Status](https://coveralls.io/repos/8398a7/collaborative_filtering/badge.svg?branch=master)](https://coveralls.io/r/8398a7/collaborative_filtering?branch=master)
4
6
 
5
- TODO: Delete this and the text above, and describe your gem
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.
@@ -22,4 +22,5 @@ Gem::Specification.new do |spec|
22
22
  spec.add_development_dependency 'rake'
23
23
  spec.add_development_dependency 'pry'
24
24
  spec.add_development_dependency 'rspec'
25
+ spec.add_development_dependency 'coveralls'
25
26
  end
@@ -1,3 +1,3 @@
1
1
  module CollaborativeFiltering
2
- VERSION = "0.1.0"
2
+ VERSION = '0.2.0'
3
3
  end
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.1.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: