makandra_sidekiq 0.2.2 → 0.2.3
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/.github/workflows/test.yml +23 -0
- data/CHANGELOG.md +12 -0
- data/Gemfile.lock +8 -8
- data/README.md +1 -1
- data/lib/makandra_sidekiq/version.rb +1 -1
- data/makandra_sidekiq.gemspec +1 -0
- metadata +5 -4
- data/.travis.yml +0 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 174526de88bc2d464dfd1de7580b3c893b518bc72a1865f292fd9cfb64fccc85
|
|
4
|
+
data.tar.gz: ab50c8e6a19cef667c1773beccd9ae3c15f9c37334ecaaf7db5f949bdcae7dfc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 857c578c94e405fe18f03d7a90dcb20b91006d74b44d5134bfd67a68de927144aba7f7470482526ec9b23be18d10e8f0f06ce39fbba0195531ccc092d5bec834
|
|
7
|
+
data.tar.gz: a4e9e532e213d36b20829cdf044b4ea1d1a354f0977ce8a36b7be45a318c0b854b2b1c309d4af8181bb9ff6882ff022f7541d0de58bb8768052f545ed5de311d
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: build
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
branches:
|
|
5
|
+
- master
|
|
6
|
+
pull_request:
|
|
7
|
+
branches:
|
|
8
|
+
- master
|
|
9
|
+
jobs:
|
|
10
|
+
test:
|
|
11
|
+
runs-on: ubuntu-20.04
|
|
12
|
+
strategy:
|
|
13
|
+
fail-fast: false
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v2
|
|
16
|
+
- name: Install ruby
|
|
17
|
+
uses: ruby/setup-ruby@v1
|
|
18
|
+
with:
|
|
19
|
+
ruby-version: 2.7
|
|
20
|
+
- name: Install dependencies
|
|
21
|
+
run: bundle install --quiet
|
|
22
|
+
- name: Run tests
|
|
23
|
+
run: bundle exec rspec spec
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,18 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
7
7
|
## Unreleased
|
|
8
8
|
|
|
9
9
|
|
|
10
|
+
## 0.2.3 2022-03-16
|
|
11
|
+
|
|
12
|
+
### Compatible changes
|
|
13
|
+
- Activate Rubygems MFA
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## 0.2.2 2020-07-20
|
|
17
|
+
|
|
18
|
+
### Compatible changes
|
|
19
|
+
- Support edge case where Sidekiq stopped but left behind its pidfile (closes [#5](https://github.com/makandra/makandra_sidekiq/issues/5))
|
|
20
|
+
|
|
21
|
+
|
|
10
22
|
## 0.2.1 2020-05-18
|
|
11
23
|
|
|
12
24
|
### Compatible changes
|
data/Gemfile.lock
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
makandra_sidekiq (0.2.
|
|
4
|
+
makandra_sidekiq (0.2.3)
|
|
5
5
|
sidekiq (< 6)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: https://rubygems.org/
|
|
9
9
|
specs:
|
|
10
|
-
connection_pool (2.2.
|
|
10
|
+
connection_pool (2.2.5)
|
|
11
11
|
diff-lcs (1.3)
|
|
12
|
-
rack (2.
|
|
13
|
-
rack-protection (2.0
|
|
12
|
+
rack (2.2.3)
|
|
13
|
+
rack-protection (2.1.0)
|
|
14
14
|
rack
|
|
15
15
|
rake (10.5.0)
|
|
16
16
|
redis (4.1.4)
|
|
@@ -27,11 +27,11 @@ GEM
|
|
|
27
27
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
28
28
|
rspec-support (~> 3.5.0)
|
|
29
29
|
rspec-support (3.5.0)
|
|
30
|
-
sidekiq (5.2.
|
|
30
|
+
sidekiq (5.2.9)
|
|
31
31
|
connection_pool (~> 2.2, >= 2.2.2)
|
|
32
|
-
rack (
|
|
32
|
+
rack (~> 2.0)
|
|
33
33
|
rack-protection (>= 1.5.0)
|
|
34
|
-
redis (>= 3.3.5, <
|
|
34
|
+
redis (>= 3.3.5, < 4.2)
|
|
35
35
|
|
|
36
36
|
PLATFORMS
|
|
37
37
|
ruby
|
|
@@ -43,4 +43,4 @@ DEPENDENCIES
|
|
|
43
43
|
rspec (~> 3.0)
|
|
44
44
|
|
|
45
45
|
BUNDLED WITH
|
|
46
|
-
1.17.
|
|
46
|
+
1.17.3
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# makandra_sidekiq [](https://github.com/makandra/makandra_sidekiq/actions)
|
|
2
2
|
|
|
3
3
|
Support code for our default Sidekiq setup.
|
|
4
4
|
|
data/makandra_sidekiq.gemspec
CHANGED
|
@@ -11,6 +11,7 @@ Gem::Specification.new do |spec|
|
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{Support code for sidekiq, including rake tasks and capistrano recipes.}
|
|
13
13
|
spec.homepage = "https://github.com/makandra/makandra_sidekiq"
|
|
14
|
+
spec.metadata = { 'rubygems_mfa_required' => 'true' }
|
|
14
15
|
|
|
15
16
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
16
17
|
spec.bindir = "exe"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: makandra_sidekiq
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tobias Kraze
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-03-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sidekiq
|
|
@@ -73,10 +73,10 @@ executables: []
|
|
|
73
73
|
extensions: []
|
|
74
74
|
extra_rdoc_files: []
|
|
75
75
|
files:
|
|
76
|
+
- ".github/workflows/test.yml"
|
|
76
77
|
- ".gitignore"
|
|
77
78
|
- ".rspec"
|
|
78
79
|
- ".ruby-version"
|
|
79
|
-
- ".travis.yml"
|
|
80
80
|
- CHANGELOG.md
|
|
81
81
|
- Gemfile
|
|
82
82
|
- Gemfile.lock
|
|
@@ -94,7 +94,8 @@ files:
|
|
|
94
94
|
- makandra_sidekiq.gemspec
|
|
95
95
|
homepage: https://github.com/makandra/makandra_sidekiq
|
|
96
96
|
licenses: []
|
|
97
|
-
metadata:
|
|
97
|
+
metadata:
|
|
98
|
+
rubygems_mfa_required: 'true'
|
|
98
99
|
post_install_message:
|
|
99
100
|
rdoc_options: []
|
|
100
101
|
require_paths:
|