capistrano-karafka 1.4.0 → 1.4.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
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/.github/workflows/ci.yml +24 -2
- data/.ruby-version +1 -1
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +38 -45
- data/{LICENSE → MIT-LICENSE} +0 -0
- data/README.md +1 -3
- data/capistrano-karafka.gemspec +4 -4
- metadata +8 -8
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 268090960d3ce79cc18226e606b19b1af6a397b23e22b1c5cfec6632c1c6bba2
|
|
4
|
+
data.tar.gz: 4ad85a6d7746310bdbb316736ad7e3317f6ac6e1e762ba14006df580c92fefc6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ceddf7d269bb06355f3efc6c35fb3a2fe80332759ca46295361bfe9d697cce9b2e5ed563c8f3dad1f59265126ec6fed325b3e08cb01ef0273c2a338681f27ff4
|
|
7
|
+
data.tar.gz: f37dcc5cce6a98a3c6ac9c854b74dda4876c0d6e8dee3a7f5cd6387c073538f89c28a7fcd5717856107fcacb77ccc988ab588fb7a787ae27eb5244ba4980b751
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
name: ci
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
|
+
pull_request:
|
|
4
5
|
push:
|
|
5
6
|
schedule:
|
|
6
7
|
- cron: '0 1 * * *'
|
|
@@ -8,15 +9,16 @@ on:
|
|
|
8
9
|
jobs:
|
|
9
10
|
specs:
|
|
10
11
|
runs-on: ubuntu-latest
|
|
12
|
+
needs: diffend
|
|
11
13
|
strategy:
|
|
12
14
|
fail-fast: false
|
|
13
15
|
matrix:
|
|
14
16
|
ruby:
|
|
17
|
+
- '3.0'
|
|
15
18
|
- '2.7'
|
|
16
19
|
- '2.6'
|
|
17
|
-
- '2.5'
|
|
18
20
|
include:
|
|
19
|
-
- ruby: '
|
|
21
|
+
- ruby: '3.0'
|
|
20
22
|
coverage: 'true'
|
|
21
23
|
steps:
|
|
22
24
|
- uses: actions/checkout@v2
|
|
@@ -32,6 +34,26 @@ jobs:
|
|
|
32
34
|
- name: Bundle install
|
|
33
35
|
run: |
|
|
34
36
|
bundle install --jobs 4 --retry 3
|
|
37
|
+
|
|
38
|
+
diffend:
|
|
39
|
+
runs-on: ubuntu-latest
|
|
40
|
+
strategy:
|
|
41
|
+
fail-fast: false
|
|
42
|
+
steps:
|
|
43
|
+
- uses: actions/checkout@v2
|
|
44
|
+
with:
|
|
45
|
+
fetch-depth: 0
|
|
46
|
+
- name: Set up Ruby
|
|
47
|
+
uses: ruby/setup-ruby@v1
|
|
48
|
+
with:
|
|
49
|
+
ruby-version: 3.0
|
|
50
|
+
- name: Install latest bundler
|
|
51
|
+
run: gem install bundler --no-document
|
|
52
|
+
- name: Install Diffend plugin
|
|
53
|
+
run: bundle plugin install diffend
|
|
54
|
+
- name: Bundle Secure
|
|
55
|
+
run: bundle secure
|
|
56
|
+
|
|
35
57
|
coditsu:
|
|
36
58
|
runs-on: ubuntu-latest
|
|
37
59
|
strategy:
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
3.0.1
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -4,67 +4,61 @@ PATH
|
|
|
4
4
|
capistrano-karafka (1.4.0)
|
|
5
5
|
capistrano (>= 3.9)
|
|
6
6
|
capistrano-bundler (>= 1.2)
|
|
7
|
-
karafka (~> 1.4.0
|
|
7
|
+
karafka (~> 1.4.0)
|
|
8
8
|
|
|
9
9
|
GEM
|
|
10
10
|
remote: https://rubygems.org/
|
|
11
11
|
specs:
|
|
12
12
|
airbrussh (1.4.0)
|
|
13
13
|
sshkit (>= 1.6.1, != 1.7.0)
|
|
14
|
-
capistrano (3.
|
|
14
|
+
capistrano (3.16.0)
|
|
15
15
|
airbrussh (>= 1.0.0)
|
|
16
16
|
i18n
|
|
17
17
|
rake (>= 10.0.0)
|
|
18
18
|
sshkit (>= 1.9.0)
|
|
19
19
|
capistrano-bundler (2.0.1)
|
|
20
20
|
capistrano (~> 3.1)
|
|
21
|
-
concurrent-ruby (1.1.
|
|
22
|
-
delivery_boy (1.0
|
|
23
|
-
king_konf (~> 0
|
|
21
|
+
concurrent-ruby (1.1.8)
|
|
22
|
+
delivery_boy (1.1.0)
|
|
23
|
+
king_konf (~> 1.0)
|
|
24
24
|
ruby-kafka (~> 1.0)
|
|
25
|
-
digest-crc (0.6.
|
|
26
|
-
rake (
|
|
27
|
-
dry-configurable (0.
|
|
25
|
+
digest-crc (0.6.3)
|
|
26
|
+
rake (>= 12.0.0, < 14.0.0)
|
|
27
|
+
dry-configurable (0.12.1)
|
|
28
28
|
concurrent-ruby (~> 1.0)
|
|
29
|
-
dry-core (~> 0.
|
|
30
|
-
dry-equalizer (~> 0.2)
|
|
29
|
+
dry-core (~> 0.5, >= 0.5.0)
|
|
31
30
|
dry-container (0.7.2)
|
|
32
31
|
concurrent-ruby (~> 1.0)
|
|
33
32
|
dry-configurable (~> 0.1, >= 0.1.3)
|
|
34
|
-
dry-core (0.
|
|
33
|
+
dry-core (0.5.0)
|
|
35
34
|
concurrent-ruby (~> 1.0)
|
|
36
35
|
dry-equalizer (0.3.0)
|
|
37
|
-
dry-events (0.
|
|
36
|
+
dry-events (0.3.0)
|
|
38
37
|
concurrent-ruby (~> 1.0)
|
|
39
|
-
dry-core (~> 0.
|
|
40
|
-
dry-equalizer (~> 0.2)
|
|
38
|
+
dry-core (~> 0.5, >= 0.5)
|
|
41
39
|
dry-inflector (0.2.0)
|
|
42
|
-
dry-initializer (3.0.
|
|
43
|
-
dry-logic (1.
|
|
40
|
+
dry-initializer (3.0.4)
|
|
41
|
+
dry-logic (1.1.1)
|
|
44
42
|
concurrent-ruby (~> 1.0)
|
|
45
|
-
dry-core (~> 0.
|
|
46
|
-
|
|
47
|
-
dry-monitor (0.3.2)
|
|
43
|
+
dry-core (~> 0.5, >= 0.5)
|
|
44
|
+
dry-monitor (0.4.0)
|
|
48
45
|
dry-configurable (~> 0.5)
|
|
49
|
-
dry-core (~> 0.
|
|
50
|
-
dry-equalizer (~> 0.2)
|
|
46
|
+
dry-core (~> 0.5, >= 0.5)
|
|
51
47
|
dry-events (~> 0.2)
|
|
52
|
-
dry-schema (1.
|
|
48
|
+
dry-schema (1.6.2)
|
|
53
49
|
concurrent-ruby (~> 1.0)
|
|
54
50
|
dry-configurable (~> 0.8, >= 0.8.3)
|
|
55
|
-
dry-core (~> 0.
|
|
56
|
-
dry-equalizer (~> 0.2)
|
|
51
|
+
dry-core (~> 0.5, >= 0.5)
|
|
57
52
|
dry-initializer (~> 3.0)
|
|
58
53
|
dry-logic (~> 1.0)
|
|
59
|
-
dry-types (~> 1.
|
|
60
|
-
dry-types (1.
|
|
54
|
+
dry-types (~> 1.5)
|
|
55
|
+
dry-types (1.5.1)
|
|
61
56
|
concurrent-ruby (~> 1.0)
|
|
62
57
|
dry-container (~> 0.3)
|
|
63
|
-
dry-core (~> 0.
|
|
64
|
-
dry-equalizer (~> 0.3)
|
|
58
|
+
dry-core (~> 0.5, >= 0.5)
|
|
65
59
|
dry-inflector (~> 0.1, >= 0.1.2)
|
|
66
60
|
dry-logic (~> 1.0, >= 1.0.2)
|
|
67
|
-
dry-validation (1.
|
|
61
|
+
dry-validation (1.6.0)
|
|
68
62
|
concurrent-ruby (~> 1.0)
|
|
69
63
|
dry-container (~> 0.7, >= 0.7.1)
|
|
70
64
|
dry-core (~> 0.4)
|
|
@@ -73,50 +67,49 @@ GEM
|
|
|
73
67
|
dry-schema (~> 1.5, >= 1.5.2)
|
|
74
68
|
envlogic (1.1.2)
|
|
75
69
|
dry-inflector (~> 0.1)
|
|
76
|
-
i18n (1.8.
|
|
70
|
+
i18n (1.8.10)
|
|
77
71
|
concurrent-ruby (~> 1.0)
|
|
78
|
-
io-console (0.5.
|
|
79
|
-
irb (1.
|
|
80
|
-
reline (>= 0.
|
|
81
|
-
karafka (1.4.
|
|
72
|
+
io-console (0.5.9)
|
|
73
|
+
irb (1.3.5)
|
|
74
|
+
reline (>= 0.1.5)
|
|
75
|
+
karafka (1.4.4)
|
|
82
76
|
dry-configurable (~> 0.8)
|
|
83
77
|
dry-inflector (~> 0.1)
|
|
84
78
|
dry-monitor (~> 0.3)
|
|
85
79
|
dry-validation (~> 1.2)
|
|
86
80
|
envlogic (~> 1.1)
|
|
87
81
|
irb (~> 1.0)
|
|
88
|
-
rake (>= 11.3)
|
|
89
82
|
ruby-kafka (>= 1.0.0)
|
|
90
83
|
thor (>= 0.20)
|
|
91
84
|
waterdrop (~> 1.4.0)
|
|
92
85
|
zeitwerk (~> 2.1)
|
|
93
|
-
king_konf (0.
|
|
86
|
+
king_konf (1.0.0)
|
|
94
87
|
net-scp (3.0.0)
|
|
95
88
|
net-ssh (>= 2.6.5, < 7.0.0)
|
|
96
89
|
net-ssh (6.1.0)
|
|
97
|
-
rake (13.0.
|
|
98
|
-
reline (0.
|
|
90
|
+
rake (13.0.3)
|
|
91
|
+
reline (0.2.5)
|
|
99
92
|
io-console (~> 0.5)
|
|
100
|
-
ruby-kafka (1.
|
|
93
|
+
ruby-kafka (1.3.0)
|
|
101
94
|
digest-crc
|
|
102
|
-
sshkit (1.21.
|
|
95
|
+
sshkit (1.21.2)
|
|
103
96
|
net-scp (>= 1.1.2)
|
|
104
97
|
net-ssh (>= 2.8.0)
|
|
105
|
-
thor (1.0
|
|
106
|
-
waterdrop (1.4.
|
|
98
|
+
thor (1.1.0)
|
|
99
|
+
waterdrop (1.4.2)
|
|
107
100
|
delivery_boy (>= 0.2, < 2.x)
|
|
108
101
|
dry-configurable (~> 0.8)
|
|
109
102
|
dry-monitor (~> 0.3)
|
|
110
103
|
dry-validation (~> 1.2)
|
|
111
104
|
ruby-kafka (>= 0.7.8)
|
|
112
105
|
zeitwerk (~> 2.1)
|
|
113
|
-
zeitwerk (2.4.
|
|
106
|
+
zeitwerk (2.4.2)
|
|
114
107
|
|
|
115
108
|
PLATFORMS
|
|
116
|
-
|
|
109
|
+
x86_64-linux
|
|
117
110
|
|
|
118
111
|
DEPENDENCIES
|
|
119
112
|
capistrano-karafka!
|
|
120
113
|
|
|
121
114
|
BUNDLED WITH
|
|
122
|
-
2.
|
|
115
|
+
2.2.16
|
data/{LICENSE → MIT-LICENSE}
RENAMED
|
File without changes
|
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/karafka/capistrano-karafka/actions?query=workflow%3Aci)
|
|
4
4
|
[](http://badge.fury.io/rb/capistrano-karafka)
|
|
5
|
-
[](https://gitter.im/karafka/karafka
|
|
5
|
+
[](https://gitter.im/karafka/karafka)
|
|
6
6
|
|
|
7
7
|
Karafka integration for Capistrano.
|
|
8
8
|
|
|
@@ -106,5 +106,3 @@ Each pull request must pass all the RSpec specs and meet our quality requirement
|
|
|
106
106
|
To check if everything is as it should be, we use [Coditsu](https://coditsu.io) that combines multiple linters and code analyzers for both code and documentation. Once you're done with your changes, submit a pull request.
|
|
107
107
|
|
|
108
108
|
Coditsu will automatically check your work against our quality standards. You can find your commit check results on the [builds page](https://app.coditsu.io/karafka/repositories/capistrano-karafka/builds/commit_builds) of Capistrano Karafka repository.
|
|
109
|
-
|
|
110
|
-
[](https://app.coditsu.io/karafka/repositories/capistrano-karafka/builds/commit_builds)
|
data/capistrano-karafka.gemspec
CHANGED
|
@@ -5,19 +5,19 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = 'capistrano-karafka'
|
|
8
|
-
spec.version = '1.4.
|
|
8
|
+
spec.version = '1.4.1'
|
|
9
9
|
spec.platform = Gem::Platform::RUBY
|
|
10
10
|
spec.authors = ['Maciej Mensfeld']
|
|
11
11
|
spec.email = %w[maciej@mensfeld.pl]
|
|
12
12
|
spec.homepage = 'https://github.com/karafka/capistrano-karafka'
|
|
13
13
|
spec.summary = 'Karafka integration for Capistrano'
|
|
14
14
|
spec.description = 'Karafka integration for Capistrano'
|
|
15
|
-
spec.license = '
|
|
15
|
+
spec.license = 'MIT'
|
|
16
16
|
|
|
17
17
|
spec.add_dependency 'capistrano', '>= 3.9'
|
|
18
18
|
spec.add_dependency 'capistrano-bundler', '>= 1.2'
|
|
19
|
-
spec.add_dependency 'karafka', '~> 1.4.0
|
|
20
|
-
spec.required_ruby_version = '>= 2.
|
|
19
|
+
spec.add_dependency 'karafka', '~> 1.4.0'
|
|
20
|
+
spec.required_ruby_version = '>= 2.6.0'
|
|
21
21
|
|
|
22
22
|
if $PROGRAM_NAME.end_with?('gem')
|
|
23
23
|
spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-karafka
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Maciej Mensfeld
|
|
@@ -34,7 +34,7 @@ cert_chain:
|
|
|
34
34
|
2DND//YJUikn1zwbz1kT70XmHd97B4Eytpln7K+M1u2g1pHVEPW4owD/ammXNpUy
|
|
35
35
|
nt70FcDD4yxJQ+0YNiHd0N8IcVBM1TMIVctMNQ==
|
|
36
36
|
-----END CERTIFICATE-----
|
|
37
|
-
date:
|
|
37
|
+
date: 2021-04-21 00:00:00.000000000 Z
|
|
38
38
|
dependencies:
|
|
39
39
|
- !ruby/object:Gem::Dependency
|
|
40
40
|
name: capistrano
|
|
@@ -70,14 +70,14 @@ dependencies:
|
|
|
70
70
|
requirements:
|
|
71
71
|
- - "~>"
|
|
72
72
|
- !ruby/object:Gem::Version
|
|
73
|
-
version: 1.4.0
|
|
73
|
+
version: 1.4.0
|
|
74
74
|
type: :runtime
|
|
75
75
|
prerelease: false
|
|
76
76
|
version_requirements: !ruby/object:Gem::Requirement
|
|
77
77
|
requirements:
|
|
78
78
|
- - "~>"
|
|
79
79
|
- !ruby/object:Gem::Version
|
|
80
|
-
version: 1.4.0
|
|
80
|
+
version: 1.4.0
|
|
81
81
|
description: Karafka integration for Capistrano
|
|
82
82
|
email:
|
|
83
83
|
- maciej@mensfeld.pl
|
|
@@ -95,7 +95,7 @@ files:
|
|
|
95
95
|
- CHANGELOG.md
|
|
96
96
|
- Gemfile
|
|
97
97
|
- Gemfile.lock
|
|
98
|
-
- LICENSE
|
|
98
|
+
- MIT-LICENSE
|
|
99
99
|
- README.md
|
|
100
100
|
- capistrano-karafka.gemspec
|
|
101
101
|
- certs/mensfeld.pem
|
|
@@ -108,7 +108,7 @@ files:
|
|
|
108
108
|
- lib/capistrano/tasks/karafka/stop.cap
|
|
109
109
|
homepage: https://github.com/karafka/capistrano-karafka
|
|
110
110
|
licenses:
|
|
111
|
-
-
|
|
111
|
+
- MIT
|
|
112
112
|
metadata: {}
|
|
113
113
|
post_install_message:
|
|
114
114
|
rdoc_options: []
|
|
@@ -118,14 +118,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
118
118
|
requirements:
|
|
119
119
|
- - ">="
|
|
120
120
|
- !ruby/object:Gem::Version
|
|
121
|
-
version: 2.
|
|
121
|
+
version: 2.6.0
|
|
122
122
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
123
123
|
requirements:
|
|
124
124
|
- - ">="
|
|
125
125
|
- !ruby/object:Gem::Version
|
|
126
126
|
version: '0'
|
|
127
127
|
requirements: []
|
|
128
|
-
rubygems_version: 3.
|
|
128
|
+
rubygems_version: 3.2.15
|
|
129
129
|
signing_key:
|
|
130
130
|
specification_version: 4
|
|
131
131
|
summary: Karafka integration for Capistrano
|
metadata.gz.sig
CHANGED
|
Binary file
|