recommender 0.1.0 → 2.0.1
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/CHANGELOG.md +15 -2
- data/README.md +52 -20
- data/lib/recommender/recommendation.rb +57 -27
- data/lib/recommender/version.rb +1 -1
- data/recommender.gemspec +41 -0
- data/spec/test_app/Gemfile.lock +2 -11
- data/spec/test_app/app/models/user.rb +1 -0
- data/spec/test_app/log/development.log +1341 -22379
- data/spec/test_app/tmp/local_secret.txt +1 -1
- metadata +12 -31
- data/spec/test_app/config/master.key +0 -1
- data/spec/test_app/log/test.log +0 -0
- data/spec/test_app/tmp/restart.txt +0 -0
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
9958a7fb0c1fbb5d4de70da67ea910bf8ac89b6cc3c01103009ac7d218247f0735b9d7668a39a3321881f4b5c15492d1a14c7402b36819d5ff84d06aeec3da22
|
metadata
CHANGED
@@ -1,29 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: recommender
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mutuba
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: activesupport
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - ">="
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: 3.0.0
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - ">="
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: 3.0.0
|
27
13
|
- !ruby/object:Gem::Dependency
|
28
14
|
name: rspec
|
29
15
|
requirement: !ruby/object:Gem::Requirement
|
@@ -84,30 +70,30 @@ dependencies:
|
|
84
70
|
name: database_cleaner-active_record
|
85
71
|
requirement: !ruby/object:Gem::Requirement
|
86
72
|
requirements:
|
87
|
-
- - "
|
73
|
+
- - "~>"
|
88
74
|
- !ruby/object:Gem::Version
|
89
|
-
version: '0'
|
75
|
+
version: '2.0'
|
90
76
|
type: :runtime
|
91
77
|
prerelease: false
|
92
78
|
version_requirements: !ruby/object:Gem::Requirement
|
93
79
|
requirements:
|
94
|
-
- - "
|
80
|
+
- - "~>"
|
95
81
|
- !ruby/object:Gem::Version
|
96
|
-
version: '0'
|
82
|
+
version: '2.0'
|
97
83
|
- !ruby/object:Gem::Dependency
|
98
84
|
name: pry-rails
|
99
85
|
requirement: !ruby/object:Gem::Requirement
|
100
86
|
requirements:
|
101
|
-
- - "
|
87
|
+
- - "~>"
|
102
88
|
- !ruby/object:Gem::Version
|
103
|
-
version: '0'
|
104
|
-
type: :
|
89
|
+
version: '0.3'
|
90
|
+
type: :development
|
105
91
|
prerelease: false
|
106
92
|
version_requirements: !ruby/object:Gem::Requirement
|
107
93
|
requirements:
|
108
|
-
- - "
|
94
|
+
- - "~>"
|
109
95
|
- !ruby/object:Gem::Version
|
110
|
-
version: '0'
|
96
|
+
version: '0.3'
|
111
97
|
- !ruby/object:Gem::Dependency
|
112
98
|
name: faker
|
113
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -139,6 +125,7 @@ files:
|
|
139
125
|
- lib/recommender.rb
|
140
126
|
- lib/recommender/recommendation.rb
|
141
127
|
- lib/recommender/version.rb
|
128
|
+
- recommender.gemspec
|
142
129
|
- sig/recommender.rbs
|
143
130
|
- spec/factories/albums.rb
|
144
131
|
- spec/factories/movie_likes.rb
|
@@ -181,7 +168,6 @@ files:
|
|
181
168
|
- spec/test_app/config/initializers/inflections.rb
|
182
169
|
- spec/test_app/config/initializers/permissions_policy.rb
|
183
170
|
- spec/test_app/config/locales/en.yml
|
184
|
-
- spec/test_app/config/master.key
|
185
171
|
- spec/test_app/config/puma.rb
|
186
172
|
- spec/test_app/config/routes.rb
|
187
173
|
- spec/test_app/db/migrate/20240619132144_create_users.rb
|
@@ -197,7 +183,6 @@ files:
|
|
197
183
|
- spec/test_app/db/schema.rb
|
198
184
|
- spec/test_app/db/seeds.rb
|
199
185
|
- spec/test_app/log/development.log
|
200
|
-
- spec/test_app/log/test.log
|
201
186
|
- spec/test_app/public/404.html
|
202
187
|
- spec/test_app/public/422.html
|
203
188
|
- spec/test_app/public/500.html
|
@@ -206,7 +191,6 @@ files:
|
|
206
191
|
- spec/test_app/public/favicon.ico
|
207
192
|
- spec/test_app/public/robots.txt
|
208
193
|
- spec/test_app/tmp/local_secret.txt
|
209
|
-
- spec/test_app/tmp/restart.txt
|
210
194
|
homepage: https://github.com/Mutuba/recommender
|
211
195
|
licenses:
|
212
196
|
- MIT
|
@@ -275,7 +259,6 @@ test_files:
|
|
275
259
|
- spec/test_app/config/initializers/inflections.rb
|
276
260
|
- spec/test_app/config/initializers/permissions_policy.rb
|
277
261
|
- spec/test_app/config/locales/en.yml
|
278
|
-
- spec/test_app/config/master.key
|
279
262
|
- spec/test_app/config/puma.rb
|
280
263
|
- spec/test_app/config/routes.rb
|
281
264
|
- spec/test_app/config.ru
|
@@ -292,7 +275,6 @@ test_files:
|
|
292
275
|
- spec/test_app/db/schema.rb
|
293
276
|
- spec/test_app/db/seeds.rb
|
294
277
|
- spec/test_app/log/development.log
|
295
|
-
- spec/test_app/log/test.log
|
296
278
|
- spec/test_app/public/404.html
|
297
279
|
- spec/test_app/public/422.html
|
298
280
|
- spec/test_app/public/500.html
|
@@ -301,4 +283,3 @@ test_files:
|
|
301
283
|
- spec/test_app/public/favicon.ico
|
302
284
|
- spec/test_app/public/robots.txt
|
303
285
|
- spec/test_app/tmp/local_secret.txt
|
304
|
-
- spec/test_app/tmp/restart.txt
|
@@ -1 +0,0 @@
|
|
1
|
-
3d863297b3a051ce444bd95cc1ccb9c1
|
data/spec/test_app/log/test.log
DELETED
File without changes
|
File without changes
|