simple-feed 2.1.0 → 3.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/.envrc +3 -0
- data/.github/workflows/rubocop.yml +22 -22
- data/.github/workflows/ruby.yml +21 -22
- data/.gitignore +2 -1
- data/.rubocop.yml +1 -1
- data/.rubocop_todo.yml +102 -33
- data/.travis.yml +3 -13
- data/CHANGELOG.md +128 -0
- data/Gemfile +2 -0
- data/LICENSE.txt +1 -1
- data/README.adoc +209 -79
- data/README.pdf +25720 -12
- data/Rakefile +1 -1
- data/codecov.yml +28 -0
- data/examples/shared/provider_example.rb +43 -25
- data/lib/simplefeed/activity/single_user.rb +2 -2
- data/lib/simplefeed/dsl/formatter.rb +67 -28
- data/lib/simplefeed/event.rb +48 -10
- data/lib/simplefeed/feed.rb +20 -9
- data/lib/simplefeed/providers/base/provider.rb +1 -1
- data/lib/simplefeed/providers/key.rb +57 -42
- data/lib/simplefeed/providers/proxy.rb +20 -7
- data/lib/simplefeed/providers/redis/driver.rb +3 -7
- data/lib/simplefeed/providers/redis/provider.rb +6 -6
- data/lib/simplefeed/providers.rb +0 -1
- data/lib/simplefeed/response.rb +3 -5
- data/lib/simplefeed/version.rb +1 -1
- data/lib/simplefeed.rb +21 -17
- data/man/running-example-redis-debug.png +0 -0
- data/man/running-example.png +0 -0
- data/man/sf-color-dump.png +0 -0
- data/simple-feed.gemspec +7 -3
- metadata +56 -15
- data/examples/hash_provider_example.rb +0 -24
- data/lib/simplefeed/key/template.rb +0 -48
- data/lib/simplefeed/key/type.rb +0 -28
- data/lib/simplefeed/providers/hash/paginator.rb +0 -33
- data/lib/simplefeed/providers/hash/provider.rb +0 -188
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9463006c8c234e72c14d26c56c144cc6cc0a2e38a9061a1c98369c30568820ef
|
4
|
+
data.tar.gz: e85378ed78e2ebe0a78a2b74e51f3b5c5dab953b205e738216ccdaebaf6bff0c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: abd55bf28d6aaacccbd88f27535ca4cee49a425b8a469b01f14fbcd549b928ecd1c97b4dcbdf0bdc88d9ea800c03184163c7008cf654254246f2f64e8936673f
|
7
|
+
data.tar.gz: b7a34d5a6630f4142e79af74847f18e7bbc34251062664b7f7b427a641943d153cb182de4dc0b340deadc2ede93fded703709bf3c6a3710e5e0356862bfc3bdd
|
data/.envrc
ADDED
@@ -1,33 +1,33 @@
|
|
1
|
-
# This workflow uses actions that are not certified by GitHub.
|
2
|
-
# They are provided by a third-party and are governed by
|
3
|
-
# separate terms of service, privacy policy, and support
|
4
|
-
# documentation.
|
5
|
-
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
|
6
|
-
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
|
7
1
|
|
8
2
|
name: Rubocop
|
9
3
|
|
10
4
|
on:
|
11
5
|
push:
|
12
|
-
branches: [
|
6
|
+
branches: [ main ]
|
13
7
|
pull_request:
|
14
|
-
branches: [
|
8
|
+
branches: [ main ]
|
15
9
|
|
16
10
|
jobs:
|
17
11
|
test:
|
18
|
-
|
19
12
|
runs-on: ubuntu-latest
|
20
|
-
|
13
|
+
services:
|
14
|
+
redis:
|
15
|
+
image: redis
|
16
|
+
ports:
|
17
|
+
- 6379:6379
|
18
|
+
options: --entrypoint redis-server
|
19
|
+
env:
|
20
|
+
CODECOV_TOKEN: "8314c388-54a3-4125-915b-3d4836c15b29"
|
21
|
+
REDIS_HOST: redis
|
22
|
+
REDIS_PORT: 6379
|
21
23
|
steps:
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
- name: Run Rubocop
|
33
|
-
run: bundle exec rubocop
|
24
|
+
- uses: actions/checkout@v4
|
25
|
+
- uses: ruby/setup-ruby@v1
|
26
|
+
with:
|
27
|
+
ruby-version: 3.3 # Not needed with a .ruby-version file
|
28
|
+
bundler-cache: true # # runs 'bundle install' and caches installed gems automatically
|
29
|
+
- run: |
|
30
|
+
gem update --system
|
31
|
+
gem install bundler
|
32
|
+
bundle update --jobs 4 --retry 3
|
33
|
+
bundle exec rubocop
|
data/.github/workflows/ruby.yml
CHANGED
@@ -1,35 +1,34 @@
|
|
1
|
-
|
1
|
+
|
2
|
+
name: RSpec
|
2
3
|
|
3
4
|
on:
|
4
5
|
push:
|
5
|
-
branches: [
|
6
|
+
branches: [ main ]
|
6
7
|
pull_request:
|
7
|
-
branches: [
|
8
|
+
branches: [ main ]
|
8
9
|
|
9
10
|
jobs:
|
10
|
-
|
11
|
+
test:
|
11
12
|
runs-on: ubuntu-latest
|
12
|
-
|
13
|
+
environment: Code Coverage
|
13
14
|
services:
|
14
15
|
redis:
|
15
16
|
image: redis
|
16
17
|
ports:
|
17
|
-
|
18
|
+
- 6379:6379
|
18
19
|
options: --entrypoint redis-server
|
19
|
-
|
20
|
+
env:
|
21
|
+
CODECOV_TOKEN: "8314c388-54a3-4125-915b-3d4836c15b29"
|
22
|
+
REDIS_HOST: redis
|
23
|
+
REDIS_PORT: 6379
|
20
24
|
steps:
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
bundle install --jobs 4 --retry 3
|
32
|
-
bundle exec rspec --format documentation
|
33
|
-
env:
|
34
|
-
REDIS_HOST: redis
|
35
|
-
REDIS_PORT: ${{ job.services.redis.ports[6379] }}
|
25
|
+
- uses: actions/checkout@v4
|
26
|
+
- uses: ruby/setup-ruby@v1
|
27
|
+
with:
|
28
|
+
ruby-version: 3.3 # Not needed with a .ruby-version file
|
29
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
30
|
+
- run: |
|
31
|
+
gem update --system
|
32
|
+
gem install bundler
|
33
|
+
bundle update --jobs 4 --retry 3
|
34
|
+
bundle exec rspec --format documentation
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
@@ -3,7 +3,6 @@ inherit_from:
|
|
3
3
|
- .relaxed-rubocop-2.4.yml
|
4
4
|
|
5
5
|
|
6
|
-
|
7
6
|
AllCops:
|
8
7
|
TargetRubyVersion: 2.6
|
9
8
|
UseCache: true
|
@@ -27,6 +26,7 @@ AllCops:
|
|
27
26
|
- '**/*.ru'
|
28
27
|
- '**/Gemfile'
|
29
28
|
- '**/Rakefile'
|
29
|
+
SuggestExtensions: false
|
30
30
|
|
31
31
|
Layout/HashAlignment:
|
32
32
|
Enabled: true
|
data/.rubocop_todo.yml
CHANGED
@@ -1,18 +1,49 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on
|
3
|
+
# on 2022-02-19 05:32:33 UTC using RuboCop version 1.25.1.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
7
7
|
# versions of RuboCop, may require this file to be generated again.
|
8
8
|
|
9
|
+
# Offense count: 1
|
10
|
+
# Configuration parameters: Include.
|
11
|
+
# Include: **/*.gemspec
|
12
|
+
Gemspec/RequiredRubyVersion:
|
13
|
+
Exclude:
|
14
|
+
- 'simple-feed.gemspec'
|
15
|
+
|
9
16
|
# Offense count: 1
|
10
17
|
# Cop supports --auto-correct.
|
11
|
-
# Configuration parameters:
|
12
|
-
|
13
|
-
Layout/EndAlignment:
|
18
|
+
# Configuration parameters: AllowDoxygenCommentStyle, AllowGemfileRubyComment.
|
19
|
+
Layout/LeadingCommentSpace:
|
14
20
|
Exclude:
|
15
|
-
- '
|
21
|
+
- 'spec/support/mock_feed.rb'
|
22
|
+
|
23
|
+
# Offense count: 3
|
24
|
+
# Configuration parameters: AllowedMethods.
|
25
|
+
# AllowedMethods: enums
|
26
|
+
Lint/ConstantDefinitionInBlock:
|
27
|
+
Exclude:
|
28
|
+
- 'spec/simplefeed/dsl/formatter_spec.rb'
|
29
|
+
- 'spec/simplefeed/providers/base/provider_spec.rb'
|
30
|
+
- 'spec/simplefeed/providers/redis/provider_spec.rb'
|
31
|
+
|
32
|
+
# Offense count: 3
|
33
|
+
Lint/MissingSuper:
|
34
|
+
Exclude:
|
35
|
+
- 'lib/simplefeed/activity/single_user.rb'
|
36
|
+
- 'lib/simplefeed/providers/base/provider.rb'
|
37
|
+
- 'spec/support/mock_feed.rb'
|
38
|
+
|
39
|
+
# Offense count: 4
|
40
|
+
# Cop supports --auto-correct-all.
|
41
|
+
# Configuration parameters: AllowedMethods.
|
42
|
+
# AllowedMethods: instance_of?, kind_of?, is_a?, eql?, respond_to?, equal?
|
43
|
+
Lint/RedundantSafeNavigation:
|
44
|
+
Exclude:
|
45
|
+
- 'lib/simplefeed/providers/proxy.rb'
|
46
|
+
- 'lib/simplefeed/providers/redis/driver.rb'
|
16
47
|
|
17
48
|
# Offense count: 2
|
18
49
|
Lint/ShadowingOuterLocalVariable:
|
@@ -20,32 +51,33 @@ Lint/ShadowingOuterLocalVariable:
|
|
20
51
|
- 'lib/simplefeed/providers/redis/provider.rb'
|
21
52
|
|
22
53
|
# Offense count: 1
|
23
|
-
# Configuration parameters: AllowComments.
|
24
|
-
Lint/SuppressedException:
|
25
|
-
Exclude:
|
26
|
-
- 'lib/simplefeed/providers/hash/provider.rb'
|
27
|
-
|
28
|
-
# Offense count: 3
|
29
54
|
# Configuration parameters: AllowKeywordBlockArguments.
|
30
55
|
Lint/UnderscorePrefixedVariableName:
|
31
56
|
Exclude:
|
32
|
-
- 'lib/simplefeed/dsl/formatter.rb'
|
33
57
|
- 'lib/simplefeed/providers/redis/provider.rb'
|
34
58
|
|
59
|
+
# Offense count: 1
|
60
|
+
# Cop supports --auto-correct-all.
|
61
|
+
# Configuration parameters: AllowComments.
|
62
|
+
Lint/UselessMethodDefinition:
|
63
|
+
Exclude:
|
64
|
+
- 'lib/simplefeed/event.rb'
|
65
|
+
|
35
66
|
# Offense count: 1
|
36
67
|
# Configuration parameters: CheckForMethodsWithNoSideEffects.
|
37
68
|
Lint/Void:
|
38
69
|
Exclude:
|
39
70
|
- 'lib/simplefeed/feed.rb'
|
40
71
|
|
41
|
-
# Offense count:
|
42
|
-
# Configuration parameters: CountComments, ExcludedMethods.
|
43
|
-
#
|
72
|
+
# Offense count: 1
|
73
|
+
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
|
74
|
+
# IgnoredMethods: refine
|
44
75
|
Metrics/BlockLength:
|
45
|
-
Max:
|
76
|
+
Max: 35
|
46
77
|
|
47
78
|
# Offense count: 1
|
48
|
-
# Configuration parameters: ExpectMatchingDefinition, Regex, IgnoreExecutableScripts, AllowedAcronyms.
|
79
|
+
# Configuration parameters: ExpectMatchingDefinition, CheckDefinitionPathHierarchy, CheckDefinitionPathHierarchyRoots, Regex, IgnoreExecutableScripts, AllowedAcronyms.
|
80
|
+
# CheckDefinitionPathHierarchyRoots: lib, spec, test, src
|
49
81
|
# AllowedAcronyms: CLI, DSL, ACL, API, ASCII, CPU, CSS, DNS, EOF, GUID, HTML, HTTP, HTTPS, ID, IP, JSON, LHS, QPS, RAM, RHS, RPC, SLA, SMTP, SQL, SSH, TCP, TLS, TTL, UDP, UI, UID, UUID, URI, URL, UTF8, VM, XML, XMPP, XSRF, XSS
|
50
82
|
Naming/FileName:
|
51
83
|
Exclude:
|
@@ -60,7 +92,7 @@ Naming/MemoizedInstanceVariableName:
|
|
60
92
|
|
61
93
|
# Offense count: 5
|
62
94
|
# Configuration parameters: MinNameLength, AllowNamesEndingInNumbers, AllowedNames, ForbiddenNames.
|
63
|
-
# AllowedNames:
|
95
|
+
# AllowedNames: at, by, db, id, in, io, ip, of, on, os, pp, to
|
64
96
|
Naming/MethodParameterName:
|
65
97
|
Exclude:
|
66
98
|
- 'lib/simplefeed/dsl/formatter.rb'
|
@@ -79,35 +111,65 @@ Naming/PredicateName:
|
|
79
111
|
- 'spec/**/*'
|
80
112
|
- 'lib/simplefeed/response.rb'
|
81
113
|
|
82
|
-
# Offense count:
|
83
|
-
# Configuration parameters: EnforcedStyle.
|
114
|
+
# Offense count: 2
|
115
|
+
# Configuration parameters: EnforcedStyle, CheckMethodNames, CheckSymbols, AllowedIdentifiers.
|
116
|
+
# SupportedStyles: snake_case, normalcase, non_integer
|
117
|
+
# AllowedIdentifiers: capture3, iso8601, rfc1123_date, rfc822, rfc2822, rfc3339
|
118
|
+
Naming/VariableNumber:
|
119
|
+
Exclude:
|
120
|
+
- 'spec/simplefeed/activity/multi_user_spec.rb'
|
121
|
+
|
122
|
+
# Offense count: 4
|
123
|
+
# Cop supports --auto-correct-all.
|
124
|
+
Style/CaseLikeIf:
|
125
|
+
Exclude:
|
126
|
+
- 'lib/simplefeed/providers/redis/driver.rb'
|
127
|
+
- 'lib/simplefeed/providers/redis/provider.rb'
|
128
|
+
- 'lib/simplefeed/providers/redis/stats.rb'
|
129
|
+
- 'spec/simplefeed/providers/base/provider_spec.rb'
|
130
|
+
|
131
|
+
# Offense count: 2
|
132
|
+
# Cop supports --auto-correct.
|
133
|
+
Style/ExpandPathArguments:
|
134
|
+
Exclude:
|
135
|
+
- 'lib/simplefeed.rb'
|
136
|
+
- 'spec/spec_helper.rb'
|
137
|
+
|
138
|
+
# Offense count: 2
|
139
|
+
# Configuration parameters: MaxUnannotatedPlaceholdersAllowed, IgnoredMethods.
|
84
140
|
# SupportedStyles: annotated, template, unannotated
|
85
141
|
Style/FormatStringToken:
|
142
|
+
EnforcedStyle: unannotated
|
143
|
+
|
144
|
+
# Offense count: 1
|
145
|
+
# Cop supports --auto-correct.
|
146
|
+
Style/GlobalStdStream:
|
86
147
|
Exclude:
|
87
|
-
- 'lib/simplefeed/dsl/formatter.rb'
|
88
148
|
- 'lib/simplefeed/providers/redis/driver.rb'
|
89
149
|
|
90
|
-
# Offense count:
|
150
|
+
# Offense count: 2
|
91
151
|
# Configuration parameters: MinBodyLength.
|
92
152
|
Style/GuardClause:
|
93
153
|
Exclude:
|
94
154
|
- 'lib/simplefeed/event.rb'
|
95
155
|
- 'lib/simplefeed/providers/base/provider.rb'
|
96
|
-
|
156
|
+
|
157
|
+
# Offense count: 2
|
158
|
+
# Cop supports --auto-correct-all.
|
159
|
+
# Configuration parameters: AllowedReceivers.
|
160
|
+
Style/HashEachMethods:
|
161
|
+
Exclude:
|
162
|
+
- 'lib/simplefeed/providers/redis/stats.rb'
|
163
|
+
- 'spec/simplefeed/dsl_spec.rb'
|
97
164
|
|
98
165
|
# Offense count: 1
|
166
|
+
# Cop supports --auto-correct.
|
99
167
|
# Configuration parameters: AllowIfModifier.
|
100
168
|
Style/IfInsideElse:
|
101
169
|
Exclude:
|
102
170
|
- 'lib/simplefeed/response.rb'
|
103
171
|
|
104
|
-
# Offense count:
|
105
|
-
Style/MethodMissingSuper:
|
106
|
-
Exclude:
|
107
|
-
- 'lib/simplefeed/providers/proxy.rb'
|
108
|
-
- 'lib/simplefeed/providers/redis/driver.rb'
|
109
|
-
|
110
|
-
# Offense count: 4
|
172
|
+
# Offense count: 5
|
111
173
|
Style/MissingRespondToMissing:
|
112
174
|
Exclude:
|
113
175
|
- 'lib/simplefeed.rb'
|
@@ -115,6 +177,7 @@ Style/MissingRespondToMissing:
|
|
115
177
|
- 'lib/simplefeed/providers/redis/driver.rb'
|
116
178
|
|
117
179
|
# Offense count: 3
|
180
|
+
# Cop supports --auto-correct.
|
118
181
|
Style/MultilineTernaryOperator:
|
119
182
|
Exclude:
|
120
183
|
- 'lib/simplefeed/feed.rb'
|
@@ -126,9 +189,15 @@ Style/OptionalArguments:
|
|
126
189
|
Exclude:
|
127
190
|
- 'lib/simplefeed/providers/redis/provider.rb'
|
128
191
|
|
129
|
-
# Offense count:
|
192
|
+
# Offense count: 4
|
193
|
+
# Cop supports --auto-correct-all.
|
194
|
+
# Configuration parameters: Mode.
|
195
|
+
Style/StringConcatenation:
|
196
|
+
Exclude:
|
197
|
+
- 'lib/simplefeed/dsl/formatter.rb'
|
198
|
+
|
199
|
+
# Offense count: 1
|
200
|
+
# Cop supports --auto-correct.
|
130
201
|
Style/StructInheritance:
|
131
202
|
Exclude:
|
132
|
-
- 'lib/simplefeed/key/template.rb'
|
133
|
-
- 'lib/simplefeed/key/type.rb'
|
134
203
|
- 'lib/simplefeed/providers/redis/driver.rb'
|
data/.travis.yml
CHANGED
@@ -1,21 +1,11 @@
|
|
1
|
+
language: ruby
|
1
2
|
cache: bundler
|
2
3
|
rvm:
|
3
4
|
- 2.3.8
|
4
5
|
- 2.4.10
|
5
6
|
- 2.5.3
|
6
|
-
- 2.6.
|
7
|
+
- 2.6.6
|
7
8
|
- 2.7.1
|
8
9
|
services:
|
9
10
|
- redis-server
|
10
|
-
|
11
|
-
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
12
|
-
- chmod +x ./cc-test-reporter
|
13
|
-
- ./cc-test-reporter before-build
|
14
|
-
script: bundle exec rspec --format=documentation
|
15
|
-
after_script:
|
16
|
-
- bash <(curl -s https://codecov.io/bash)
|
17
|
-
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
|
18
|
-
env:
|
19
|
-
global:
|
20
|
-
CODECOV_TOKEN="2085c087-f833-49c7-a105-703bce882653"
|
21
|
-
secure: cdUlrz0XNCu0HB5lNLYZBF6yaukIkDZRlVsAbeeaNhPKCVj7MOvuGEUZ9TzQP0yXRaGXHy3xXem0MdDbnli5WYvHxj2MTrRVEDBiRm4jaZFHe3Rewr2mWmLqK1c4g9gvOTgjPNPTesdft87+wQuPedQLpfMGuedA86tkKzA2Tkc4J69DI93C02h6H89iiQFHL9ISNk5DzZh3FJo+fyi0JQlD6CAzWrVplCqf088qGdAk3Hy77Q2GKkVEdOb/P0cdmDLnFjekdh4b0TPI/uaqgu4cZeoebWQgg61K/enGLqxY2Lp0f4DsXQev+06d14KxIJMYHLuDgvlVwYMDInxQU7kXgTRgAnaxRdm0S7NbP89uBVkfIQiNGan7Qkvw2ayGhYCcu7Vgvjo6C2btZWLpxT0XvpQGfpvHrRrPnzFbFLLtG4rhJd3iiTbSa5LPDEi4Qx9uwGNy4iR6IB69R6dPwAR8P45XZE4JnJVUvrM/X9v9Yv2hAxnuCb48whalIozGqpwavLdYrgCf2pQecls74uw4mCxvDAg0EoskrDYuk4DYeZ507ajor4zX1avLUVfYk/0igpp6KeLENY5ozl1zsEvRcOldfdV8R9tKEGxliIgffe67Hc5/ZP+C/53lcK0nIxXYrB1I7Q+CVlEDNutNQNZRDfrNBYJVe/+RvmmdD+w=
|
11
|
+
script: bundle update && bundle exec rspec
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,128 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## [v3.1.2](https://github.com/kigster/simple-feed/tree/v3.1.2) (2022-02-23)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/kigster/simple-feed/compare/v3.1.1...v3.1.2)
|
6
|
+
|
7
|
+
**Merged pull requests:**
|
8
|
+
|
9
|
+
- Awesome print should be a regular dependency if it will be required [\#31](https://github.com/kigster/simple-feed/pull/31) ([danigirl329](https://github.com/danigirl329))
|
10
|
+
|
11
|
+
## [v3.1.1](https://github.com/kigster/simple-feed/tree/v3.1.1) (2022-02-22)
|
12
|
+
|
13
|
+
[Full Changelog](https://github.com/kigster/simple-feed/compare/v3.1.0...v3.1.1)
|
14
|
+
|
15
|
+
**Closed issues:**
|
16
|
+
|
17
|
+
- Fix pipelined usage for redis.rb 5.0.0 [\#28](https://github.com/kigster/simple-feed/issues/28)
|
18
|
+
|
19
|
+
**Merged pull requests:**
|
20
|
+
|
21
|
+
- Redis library 5.0.0 + Removing Hash Provider [\#29](https://github.com/kigster/simple-feed/pull/29) ([kigster](https://github.com/kigster))
|
22
|
+
- Add license scan report and status [\#24](https://github.com/kigster/simple-feed/pull/24) ([fossabot](https://github.com/fossabot))
|
23
|
+
|
24
|
+
## [v3.1.0](https://github.com/kigster/simple-feed/tree/v3.1.0) (2022-02-21)
|
25
|
+
|
26
|
+
[Full Changelog](https://github.com/kigster/simple-feed/compare/v3.0.1...v3.1.0)
|
27
|
+
|
28
|
+
**Closed issues:**
|
29
|
+
|
30
|
+
- Error after upgrading to 3.0 [\#19](https://github.com/kigster/simple-feed/issues/19)
|
31
|
+
|
32
|
+
## [v3.0.1](https://github.com/kigster/simple-feed/tree/v3.0.1) (2020-06-17)
|
33
|
+
|
34
|
+
[Full Changelog](https://github.com/kigster/simple-feed/compare/v3.0.0...v3.0.1)
|
35
|
+
|
36
|
+
**Merged pull requests:**
|
37
|
+
|
38
|
+
- Use standard \*args expansion for Ruby \< 2.7 [\#21](https://github.com/kigster/simple-feed/pull/21) ([kigster](https://github.com/kigster))
|
39
|
+
- Switch to tty-box for color\_dump and examples [\#20](https://github.com/kigster/simple-feed/pull/20) ([kigster](https://github.com/kigster))
|
40
|
+
|
41
|
+
## [v3.0.0](https://github.com/kigster/simple-feed/tree/v3.0.0) (2020-05-25)
|
42
|
+
|
43
|
+
[Full Changelog](https://github.com/kigster/simple-feed/compare/v2.1.0...v3.0.0)
|
44
|
+
|
45
|
+
**Merged pull requests:**
|
46
|
+
|
47
|
+
- First pass on meta/data refactor to allow different publisher/consumer [\#18](https://github.com/kigster/simple-feed/pull/18) ([kigster](https://github.com/kigster))
|
48
|
+
- \(v2.1.0\) Support for non-integer user\_ids [\#17](https://github.com/kigster/simple-feed/pull/17) ([kigster](https://github.com/kigster))
|
49
|
+
- Not sure how this is working for everyone else? [\#15](https://github.com/kigster/simple-feed/pull/15) ([rromanchuk](https://github.com/rromanchuk))
|
50
|
+
- Adding Codecov [\#14](https://github.com/kigster/simple-feed/pull/14) ([kigster](https://github.com/kigster))
|
51
|
+
|
52
|
+
## [v2.1.0](https://github.com/kigster/simple-feed/tree/v2.1.0) (2020-05-24)
|
53
|
+
|
54
|
+
[Full Changelog](https://github.com/kigster/simple-feed/compare/v2.0.2...v2.1.0)
|
55
|
+
|
56
|
+
**Closed issues:**
|
57
|
+
|
58
|
+
- Support string or UUID user\_id across the board [\#16](https://github.com/kigster/simple-feed/issues/16)
|
59
|
+
- Document overwriting logic, provide override? [\#13](https://github.com/kigster/simple-feed/issues/13)
|
60
|
+
- How exactly is data structured and stored into keys? [\#12](https://github.com/kigster/simple-feed/issues/12)
|
61
|
+
- Base62 encoding for @user\_id is problematic for namespacing [\#11](https://github.com/kigster/simple-feed/issues/11)
|
62
|
+
- Caching conventions? [\#10](https://github.com/kigster/simple-feed/issues/10)
|
63
|
+
- Optional secondary index? [\#9](https://github.com/kigster/simple-feed/issues/9)
|
64
|
+
- Group feeds? [\#8](https://github.com/kigster/simple-feed/issues/8)
|
65
|
+
|
66
|
+
## [v2.0.2](https://github.com/kigster/simple-feed/tree/v2.0.2) (2017-12-07)
|
67
|
+
|
68
|
+
[Full Changelog](https://github.com/kigster/simple-feed/compare/v2.0.1...v2.0.2)
|
69
|
+
|
70
|
+
**Closed issues:**
|
71
|
+
|
72
|
+
- Permissions on all .rb file are not correct [\#7](https://github.com/kigster/simple-feed/issues/7)
|
73
|
+
- Can I add a connector to use Elasticsearch? [\#6](https://github.com/kigster/simple-feed/issues/6)
|
74
|
+
- Multi-feeds aggregation ? [\#4](https://github.com/kigster/simple-feed/issues/4)
|
75
|
+
- Explain when feed items are removed/expire from the feed [\#3](https://github.com/kigster/simple-feed/issues/3)
|
76
|
+
- how I can periodic export data from Redis to DB \(Postgres, MySQL, etc\) ? [\#2](https://github.com/kigster/simple-feed/issues/2)
|
77
|
+
|
78
|
+
**Merged pull requests:**
|
79
|
+
|
80
|
+
- Silence Hashie warnings [\#5](https://github.com/kigster/simple-feed/pull/5) ([wa0x6e](https://github.com/wa0x6e))
|
81
|
+
|
82
|
+
## [v2.0.1](https://github.com/kigster/simple-feed/tree/v2.0.1) (2016-12-29)
|
83
|
+
|
84
|
+
[Full Changelog](https://github.com/kigster/simple-feed/compare/v1.0.4...v2.0.1)
|
85
|
+
|
86
|
+
## [v1.0.4](https://github.com/kigster/simple-feed/tree/v1.0.4) (2016-12-13)
|
87
|
+
|
88
|
+
[Full Changelog](https://github.com/kigster/simple-feed/compare/v1.0.3...v1.0.4)
|
89
|
+
|
90
|
+
## [v1.0.3](https://github.com/kigster/simple-feed/tree/v1.0.3) (2016-12-13)
|
91
|
+
|
92
|
+
[Full Changelog](https://github.com/kigster/simple-feed/compare/v1.0.2...v1.0.3)
|
93
|
+
|
94
|
+
## [v1.0.2](https://github.com/kigster/simple-feed/tree/v1.0.2) (2016-12-08)
|
95
|
+
|
96
|
+
[Full Changelog](https://github.com/kigster/simple-feed/compare/v1.0.1...v1.0.2)
|
97
|
+
|
98
|
+
## [v1.0.1](https://github.com/kigster/simple-feed/tree/v1.0.1) (2016-12-08)
|
99
|
+
|
100
|
+
[Full Changelog](https://github.com/kigster/simple-feed/compare/v1.0.0...v1.0.1)
|
101
|
+
|
102
|
+
## [v1.0.0](https://github.com/kigster/simple-feed/tree/v1.0.0) (2016-12-02)
|
103
|
+
|
104
|
+
[Full Changelog](https://github.com/kigster/simple-feed/compare/v0.5.1...v1.0.0)
|
105
|
+
|
106
|
+
## [v0.5.1](https://github.com/kigster/simple-feed/tree/v0.5.1) (2016-12-01)
|
107
|
+
|
108
|
+
[Full Changelog](https://github.com/kigster/simple-feed/compare/v0.5.0...v0.5.1)
|
109
|
+
|
110
|
+
## [v0.5.0](https://github.com/kigster/simple-feed/tree/v0.5.0) (2016-11-30)
|
111
|
+
|
112
|
+
[Full Changelog](https://github.com/kigster/simple-feed/compare/v0.4.1...v0.5.0)
|
113
|
+
|
114
|
+
**Merged pull requests:**
|
115
|
+
|
116
|
+
- Redis provider implementation \[DO NOT MERGE\] [\#1](https://github.com/kigster/simple-feed/pull/1) ([kigster](https://github.com/kigster))
|
117
|
+
|
118
|
+
## [v0.4.1](https://github.com/kigster/simple-feed/tree/v0.4.1) (2016-11-22)
|
119
|
+
|
120
|
+
[Full Changelog](https://github.com/kigster/simple-feed/compare/v0.4.0...v0.4.1)
|
121
|
+
|
122
|
+
## [v0.4.0](https://github.com/kigster/simple-feed/tree/v0.4.0) (2016-11-22)
|
123
|
+
|
124
|
+
[Full Changelog](https://github.com/kigster/simple-feed/compare/1255221c85540264be91293f2927ddf5a9754dd1...v0.4.0)
|
125
|
+
|
126
|
+
|
127
|
+
|
128
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|
data/Gemfile
CHANGED
data/LICENSE.txt
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
The MIT License (MIT)
|
2
2
|
|
3
|
-
Copyright (c) 2016 Konstantin Gredeskoul
|
3
|
+
Copyright (c) 2016-2022 Konstantin Gredeskoul
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|