capistrano-karafka 1.2.0 → 1.4.1

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
  SHA256:
3
- metadata.gz: e25e853758c566fb0583aeac66639d673c2195478441c57954f159005674300d
4
- data.tar.gz: 7d15745b8f03f121dd8189ec4ef98d367dc2a2700c5d84624f05cbf6af96bfd3
3
+ metadata.gz: 268090960d3ce79cc18226e606b19b1af6a397b23e22b1c5cfec6632c1c6bba2
4
+ data.tar.gz: 4ad85a6d7746310bdbb316736ad7e3317f6ac6e1e762ba14006df580c92fefc6
5
5
  SHA512:
6
- metadata.gz: c6e84b11e39f14c42d0317f5602bd7ddcfd2c8e7327bb6b24b4ea55526285414e54a048d0cfd91f00ca6c809591f444ba4420bab8305d7d40365cf3ecb6feb5d
7
- data.tar.gz: a314c67626c578a089bd9a326f8c51503c03158f933ef508fc07c6435907b32cb3baa51a617d4caff554dc6499cfa1fa25b847506084e22f077f8fb1a1dba8fc
6
+ metadata.gz: ceddf7d269bb06355f3efc6c35fb3a2fe80332759ca46295361bfe9d697cce9b2e5ed563c8f3dad1f59265126ec6fed325b3e08cb01ef0273c2a338681f27ff4
7
+ data.tar.gz: f37dcc5cce6a98a3c6ac9c854b74dda4876c0d6e8dee3a7f5cd6387c073538f89c28a7fcd5717856107fcacb77ccc988ab588fb7a787ae27eb5244ba4980b751
checksums.yaml.gz.sig ADDED
Binary file
data.tar.gz.sig ADDED
Binary file
data/.coditsu/ci.yml ADDED
@@ -0,0 +1,3 @@
1
+ repository_id: 'df4178d8-9926-49a7-9410-4c419921d2ad'
2
+ api_key: <%= ENV['CODITSU_API_KEY'] %>
3
+ api_secret: <%= ENV['CODITSU_API_SECRET'] %>
data/.diffend.yml ADDED
@@ -0,0 +1,3 @@
1
+ project_id: '9858bda8-574c-4ad3-99a0-48b5c36e4526'
2
+ shareable_id: '2eeb007b-2a48-46fb-9880-88232aff8741'
3
+ shareable_key: 'a50b4180-8fb6-4116-aca8-0fd0754ae436'
@@ -0,0 +1 @@
1
+ open_collective: karafka
@@ -0,0 +1,66 @@
1
+ name: ci
2
+
3
+ on:
4
+ pull_request:
5
+ push:
6
+ schedule:
7
+ - cron: '0 1 * * *'
8
+
9
+ jobs:
10
+ specs:
11
+ runs-on: ubuntu-latest
12
+ needs: diffend
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ ruby:
17
+ - '3.0'
18
+ - '2.7'
19
+ - '2.6'
20
+ include:
21
+ - ruby: '3.0'
22
+ coverage: 'true'
23
+ steps:
24
+ - uses: actions/checkout@v2
25
+ - name: Install package dependencies
26
+ run: "[ -e $APT_DEPS ] || sudo apt-get install -y --no-install-recommends $APT_DEPS"
27
+ - name: Set up Ruby
28
+ uses: ruby/setup-ruby@v1
29
+ with:
30
+ ruby-version: ${{matrix.ruby}}
31
+ - name: Install latest bundler
32
+ run: |
33
+ gem install bundler --no-document
34
+ - name: Bundle install
35
+ run: |
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
+
57
+ coditsu:
58
+ runs-on: ubuntu-latest
59
+ strategy:
60
+ fail-fast: false
61
+ steps:
62
+ - uses: actions/checkout@v2
63
+ with:
64
+ fetch-depth: 0
65
+ - name: Run Coditsu
66
+ run: \curl -sSL https://api.coditsu.io/run/ci | bash
data/.gitignore CHANGED
@@ -4,6 +4,7 @@
4
4
  .config
5
5
  .idea
6
6
  .yardoc
7
+ .coditsu/local.yml
7
8
  InstalledFiles
8
9
  _yardoc
9
10
  coverage
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.5.0
1
+ 3.0.1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Capistrano Karafka changelog
2
2
 
3
+ ## 1.4.1 (2021-04-21)
4
+ - Re-license with MIT
5
+ - Remove Ruby 2.5 support and update minimum Ruby requirement to 2.6
6
+
7
+ ## 1.4.0 (2020-09-05)
8
+ - 1.4 release without any changes to match Karafka releases versioning
9
+
10
+ ## 1.3.1 (2020-04-28)
11
+ - Ruby 2.6.5 support
12
+ - Ruby 2.7.1 support
13
+ - Drop support for Ruby < 2.5
14
+ - Change license to LGPL-3.0
15
+
16
+ ## 1.3.0 (2019-09-09)
17
+ - Final `1.3.0` release
18
+
19
+ ## 1.3.0.rc1 (2019-07-31)
20
+ - Ruby 2.6.3 support
21
+ - Support for Karafka 1.3
22
+
3
23
  ## 1.2.0
4
24
  - Ruby 2.4.2 support
5
25
  - Ruby 2.5.0 support
data/Gemfile CHANGED
@@ -2,5 +2,6 @@
2
2
 
3
3
  source 'https://rubygems.org'
4
4
 
5
- # Specify your gem's dependencies in capistrano-karafka.gemspec
5
+ plugin 'diffend'
6
+
6
7
  gemspec
data/Gemfile.lock CHANGED
@@ -1,118 +1,115 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- capistrano-karafka (1.2.0)
4
+ capistrano-karafka (1.4.0)
5
5
  capistrano (>= 3.9)
6
6
  capistrano-bundler (>= 1.2)
7
- karafka (~> 1.2)
7
+ karafka (~> 1.4.0)
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- activesupport (5.1.5)
13
- concurrent-ruby (~> 1.0, >= 1.0.2)
14
- i18n (~> 0.7)
15
- minitest (~> 5.1)
16
- tzinfo (~> 1.1)
17
- airbrussh (1.3.0)
12
+ airbrussh (1.4.0)
18
13
  sshkit (>= 1.6.1, != 1.7.0)
19
- capistrano (3.10.1)
14
+ capistrano (3.16.0)
20
15
  airbrussh (>= 1.0.0)
21
16
  i18n
22
17
  rake (>= 10.0.0)
23
18
  sshkit (>= 1.9.0)
24
- capistrano-bundler (1.3.0)
19
+ capistrano-bundler (2.0.1)
25
20
  capistrano (~> 3.1)
26
- sshkit (~> 1.2)
27
- concurrent-ruby (1.0.5)
28
- delivery_boy (0.2.4)
29
- king_konf (~> 0.1.8)
30
- ruby-kafka (~> 0.5.1)
31
- dry-configurable (0.7.0)
21
+ concurrent-ruby (1.1.8)
22
+ delivery_boy (1.1.0)
23
+ king_konf (~> 1.0)
24
+ ruby-kafka (~> 1.0)
25
+ digest-crc (0.6.3)
26
+ rake (>= 12.0.0, < 14.0.0)
27
+ dry-configurable (0.12.1)
32
28
  concurrent-ruby (~> 1.0)
33
- dry-container (0.6.0)
29
+ dry-core (~> 0.5, >= 0.5.0)
30
+ dry-container (0.7.2)
34
31
  concurrent-ruby (~> 1.0)
35
32
  dry-configurable (~> 0.1, >= 0.1.3)
36
- dry-core (0.4.5)
33
+ dry-core (0.5.0)
37
34
  concurrent-ruby (~> 1.0)
38
- dry-equalizer (0.2.0)
39
- dry-events (0.1.0)
35
+ dry-equalizer (0.3.0)
36
+ dry-events (0.3.0)
40
37
  concurrent-ruby (~> 1.0)
41
- dry-core (~> 0.4)
42
- dry-equalizer (~> 0.2)
43
- dry-inflector (0.1.1)
44
- dry-logic (0.4.2)
45
- dry-container (~> 0.2, >= 0.2.6)
46
- dry-core (~> 0.2)
47
- dry-equalizer (~> 0.2)
48
- dry-monitor (0.1.2)
38
+ dry-core (~> 0.5, >= 0.5)
39
+ dry-inflector (0.2.0)
40
+ dry-initializer (3.0.4)
41
+ dry-logic (1.1.1)
42
+ concurrent-ruby (~> 1.0)
43
+ dry-core (~> 0.5, >= 0.5)
44
+ dry-monitor (0.4.0)
49
45
  dry-configurable (~> 0.5)
50
- dry-equalizer (~> 0.2)
51
- dry-events (~> 0.1)
52
- rouge (~> 2.0, >= 2.2.1)
53
- dry-types (0.12.2)
46
+ dry-core (~> 0.5, >= 0.5)
47
+ dry-events (~> 0.2)
48
+ dry-schema (1.6.2)
49
+ concurrent-ruby (~> 1.0)
50
+ dry-configurable (~> 0.8, >= 0.8.3)
51
+ dry-core (~> 0.5, >= 0.5)
52
+ dry-initializer (~> 3.0)
53
+ dry-logic (~> 1.0)
54
+ dry-types (~> 1.5)
55
+ dry-types (1.5.1)
54
56
  concurrent-ruby (~> 1.0)
55
- dry-configurable (~> 0.1)
56
57
  dry-container (~> 0.3)
57
- dry-core (~> 0.2, >= 0.2.1)
58
- dry-equalizer (~> 0.2)
59
- dry-logic (~> 0.4, >= 0.4.2)
60
- inflecto (~> 0.0.0, >= 0.0.2)
61
- dry-validation (0.11.1)
58
+ dry-core (~> 0.5, >= 0.5)
59
+ dry-inflector (~> 0.1, >= 0.1.2)
60
+ dry-logic (~> 1.0, >= 1.0.2)
61
+ dry-validation (1.6.0)
62
62
  concurrent-ruby (~> 1.0)
63
- dry-configurable (~> 0.1, >= 0.1.3)
64
- dry-core (~> 0.2, >= 0.2.1)
63
+ dry-container (~> 0.7, >= 0.7.1)
64
+ dry-core (~> 0.4)
65
65
  dry-equalizer (~> 0.2)
66
- dry-logic (~> 0.4, >= 0.4.0)
67
- dry-types (~> 0.12.0)
68
- envlogic (1.1.0)
66
+ dry-initializer (~> 3.0)
67
+ dry-schema (~> 1.5, >= 1.5.2)
68
+ envlogic (1.1.2)
69
69
  dry-inflector (~> 0.1)
70
- i18n (0.9.5)
70
+ i18n (1.8.10)
71
71
  concurrent-ruby (~> 1.0)
72
- inflecto (0.0.2)
73
- karafka (1.2.0)
74
- activesupport (>= 4.0)
75
- dry-configurable (~> 0.7)
76
- dry-inflector (~> 0.1.1)
77
- dry-monitor (~> 0.1)
78
- dry-validation (~> 0.11)
79
- envlogic (~> 1.0)
80
- multi_json (>= 1.12)
81
- rake (>= 11.3)
82
- require_all (>= 1.4)
83
- ruby-kafka (>= 0.5.3)
84
- thor (~> 0.19)
85
- waterdrop (~> 1.2)
86
- king_konf (0.1.10)
87
- minitest (5.11.3)
88
- multi_json (1.13.1)
89
- net-scp (1.2.1)
90
- net-ssh (>= 2.6.5)
91
- net-ssh (4.2.0)
92
- null-logger (0.1.5)
93
- rake (12.3.1)
94
- require_all (2.0.0)
95
- rouge (2.2.1)
96
- ruby-kafka (0.5.4)
97
- sshkit (1.16.0)
72
+ io-console (0.5.9)
73
+ irb (1.3.5)
74
+ reline (>= 0.1.5)
75
+ karafka (1.4.4)
76
+ dry-configurable (~> 0.8)
77
+ dry-inflector (~> 0.1)
78
+ dry-monitor (~> 0.3)
79
+ dry-validation (~> 1.2)
80
+ envlogic (~> 1.1)
81
+ irb (~> 1.0)
82
+ ruby-kafka (>= 1.0.0)
83
+ thor (>= 0.20)
84
+ waterdrop (~> 1.4.0)
85
+ zeitwerk (~> 2.1)
86
+ king_konf (1.0.0)
87
+ net-scp (3.0.0)
88
+ net-ssh (>= 2.6.5, < 7.0.0)
89
+ net-ssh (6.1.0)
90
+ rake (13.0.3)
91
+ reline (0.2.5)
92
+ io-console (~> 0.5)
93
+ ruby-kafka (1.3.0)
94
+ digest-crc
95
+ sshkit (1.21.2)
98
96
  net-scp (>= 1.1.2)
99
97
  net-ssh (>= 2.8.0)
100
- thor (0.20.0)
101
- thread_safe (0.3.6)
102
- tzinfo (1.2.5)
103
- thread_safe (~> 0.1)
104
- waterdrop (1.2.0)
105
- delivery_boy (~> 0.2)
106
- dry-configurable (~> 0.7)
107
- dry-monitor (~> 0.1)
108
- dry-validation (~> 0.11)
109
- null-logger
98
+ thor (1.1.0)
99
+ waterdrop (1.4.2)
100
+ delivery_boy (>= 0.2, < 2.x)
101
+ dry-configurable (~> 0.8)
102
+ dry-monitor (~> 0.3)
103
+ dry-validation (~> 1.2)
104
+ ruby-kafka (>= 0.7.8)
105
+ zeitwerk (~> 2.1)
106
+ zeitwerk (2.4.2)
110
107
 
111
108
  PLATFORMS
112
- ruby
109
+ x86_64-linux
113
110
 
114
111
  DEPENDENCIES
115
112
  capistrano-karafka!
116
113
 
117
114
  BUNDLED WITH
118
- 1.16.1
115
+ 2.2.16
data/MIT-LICENSE ADDED
@@ -0,0 +1,165 @@
1
+ GNU LESSER GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+
9
+ This version of the GNU Lesser General Public License incorporates
10
+ the terms and conditions of version 3 of the GNU General Public
11
+ License, supplemented by the additional permissions listed below.
12
+
13
+ 0. Additional Definitions.
14
+
15
+ As used herein, "this License" refers to version 3 of the GNU Lesser
16
+ General Public License, and the "GNU GPL" refers to version 3 of the GNU
17
+ General Public License.
18
+
19
+ "The Library" refers to a covered work governed by this License,
20
+ other than an Application or a Combined Work as defined below.
21
+
22
+ An "Application" is any work that makes use of an interface provided
23
+ by the Library, but which is not otherwise based on the Library.
24
+ Defining a subclass of a class defined by the Library is deemed a mode
25
+ of using an interface provided by the Library.
26
+
27
+ A "Combined Work" is a work produced by combining or linking an
28
+ Application with the Library. The particular version of the Library
29
+ with which the Combined Work was made is also called the "Linked
30
+ Version".
31
+
32
+ The "Minimal Corresponding Source" for a Combined Work means the
33
+ Corresponding Source for the Combined Work, excluding any source code
34
+ for portions of the Combined Work that, considered in isolation, are
35
+ based on the Application, and not on the Linked Version.
36
+
37
+ The "Corresponding Application Code" for a Combined Work means the
38
+ object code and/or source code for the Application, including any data
39
+ and utility programs needed for reproducing the Combined Work from the
40
+ Application, but excluding the System Libraries of the Combined Work.
41
+
42
+ 1. Exception to Section 3 of the GNU GPL.
43
+
44
+ You may convey a covered work under sections 3 and 4 of this License
45
+ without being bound by section 3 of the GNU GPL.
46
+
47
+ 2. Conveying Modified Versions.
48
+
49
+ If you modify a copy of the Library, and, in your modifications, a
50
+ facility refers to a function or data to be supplied by an Application
51
+ that uses the facility (other than as an argument passed when the
52
+ facility is invoked), then you may convey a copy of the modified
53
+ version:
54
+
55
+ a) under this License, provided that you make a good faith effort to
56
+ ensure that, in the event an Application does not supply the
57
+ function or data, the facility still operates, and performs
58
+ whatever part of its purpose remains meaningful, or
59
+
60
+ b) under the GNU GPL, with none of the additional permissions of
61
+ this License applicable to that copy.
62
+
63
+ 3. Object Code Incorporating Material from Library Header Files.
64
+
65
+ The object code form of an Application may incorporate material from
66
+ a header file that is part of the Library. You may convey such object
67
+ code under terms of your choice, provided that, if the incorporated
68
+ material is not limited to numerical parameters, data structure
69
+ layouts and accessors, or small macros, inline functions and templates
70
+ (ten or fewer lines in length), you do both of the following:
71
+
72
+ a) Give prominent notice with each copy of the object code that the
73
+ Library is used in it and that the Library and its use are
74
+ covered by this License.
75
+
76
+ b) Accompany the object code with a copy of the GNU GPL and this license
77
+ document.
78
+
79
+ 4. Combined Works.
80
+
81
+ You may convey a Combined Work under terms of your choice that,
82
+ taken together, effectively do not restrict modification of the
83
+ portions of the Library contained in the Combined Work and reverse
84
+ engineering for debugging such modifications, if you also do each of
85
+ the following:
86
+
87
+ a) Give prominent notice with each copy of the Combined Work that
88
+ the Library is used in it and that the Library and its use are
89
+ covered by this License.
90
+
91
+ b) Accompany the Combined Work with a copy of the GNU GPL and this license
92
+ document.
93
+
94
+ c) For a Combined Work that displays copyright notices during
95
+ execution, include the copyright notice for the Library among
96
+ these notices, as well as a reference directing the user to the
97
+ copies of the GNU GPL and this license document.
98
+
99
+ d) Do one of the following:
100
+
101
+ 0) Convey the Minimal Corresponding Source under the terms of this
102
+ License, and the Corresponding Application Code in a form
103
+ suitable for, and under terms that permit, the user to
104
+ recombine or relink the Application with a modified version of
105
+ the Linked Version to produce a modified Combined Work, in the
106
+ manner specified by section 6 of the GNU GPL for conveying
107
+ Corresponding Source.
108
+
109
+ 1) Use a suitable shared library mechanism for linking with the
110
+ Library. A suitable mechanism is one that (a) uses at run time
111
+ a copy of the Library already present on the user's computer
112
+ system, and (b) will operate properly with a modified version
113
+ of the Library that is interface-compatible with the Linked
114
+ Version.
115
+
116
+ e) Provide Installation Information, but only if you would otherwise
117
+ be required to provide such information under section 6 of the
118
+ GNU GPL, and only to the extent that such information is
119
+ necessary to install and execute a modified version of the
120
+ Combined Work produced by recombining or relinking the
121
+ Application with a modified version of the Linked Version. (If
122
+ you use option 4d0, the Installation Information must accompany
123
+ the Minimal Corresponding Source and Corresponding Application
124
+ Code. If you use option 4d1, you must provide the Installation
125
+ Information in the manner specified by section 6 of the GNU GPL
126
+ for conveying Corresponding Source.)
127
+
128
+ 5. Combined Libraries.
129
+
130
+ You may place library facilities that are a work based on the
131
+ Library side by side in a single library together with other library
132
+ facilities that are not Applications and are not covered by this
133
+ License, and convey such a combined library under terms of your
134
+ choice, if you do both of the following:
135
+
136
+ a) Accompany the combined library with a copy of the same work based
137
+ on the Library, uncombined with any other library facilities,
138
+ conveyed under the terms of this License.
139
+
140
+ b) Give prominent notice with the combined library that part of it
141
+ is a work based on the Library, and explaining where to find the
142
+ accompanying uncombined form of the same work.
143
+
144
+ 6. Revised Versions of the GNU Lesser General Public License.
145
+
146
+ The Free Software Foundation may publish revised and/or new versions
147
+ of the GNU Lesser General Public License from time to time. Such new
148
+ versions will be similar in spirit to the present version, but may
149
+ differ in detail to address new problems or concerns.
150
+
151
+ Each version is given a distinguishing version number. If the
152
+ Library as you received it specifies that a certain numbered version
153
+ of the GNU Lesser General Public License "or any later version"
154
+ applies to it, you have the option of following the terms and
155
+ conditions either of that published version or of any later version
156
+ published by the Free Software Foundation. If the Library as you
157
+ received it does not specify a version number of the GNU Lesser
158
+ General Public License, you may choose any version of the GNU Lesser
159
+ General Public License ever published by the Free Software Foundation.
160
+
161
+ If the Library as you received it specifies that a proxy can decide
162
+ whether future versions of the GNU Lesser General Public License shall
163
+ apply, that proxy's public statement of acceptance of any version is
164
+ permanent authorization for you to choose that version for the
165
+ Library.
data/README.md CHANGED
@@ -1,10 +1,13 @@
1
1
  # Capistrano Karafka
2
2
 
3
+ [![Build Status](https://github.com/karafka/capistrano-karafka/workflows/ci/badge.svg)](https://github.com/karafka/capistrano-karafka/actions?query=workflow%3Aci)
3
4
  [![Gem Version](https://badge.fury.io/rb/capistrano-karafka.svg)](http://badge.fury.io/rb/capistrano-karafka)
4
- [![Join the chat at https://gitter.im/karafka/karafka](https://badges.gitter.im/karafka/karafka.svg)](https://gitter.im/karafka/karafka?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
5
+ [![Join the chat at https://gitter.im/karafka/karafka](https://badges.gitter.im/karafka/karafka.svg)](https://gitter.im/karafka/karafka)
5
6
 
6
7
  Karafka integration for Capistrano.
7
8
 
9
+ **Note**: If you want to use Karafka framework with `systemd` and Capistrano, you don't need this gem at all. Please refer to [this](https://github.com/karafka/karafka/wiki/Deployment#systemd--capistrano) section of the Wiki.
10
+
8
11
  ## Installation
9
12
 
10
13
  Add this line to your application Gemfile:
@@ -91,16 +94,15 @@ By default, capistrano-karafka will start Karafka processes without limiting con
91
94
  ## References
92
95
 
93
96
  * [Karafka framework](https://github.com/karafka/karafka)
97
+ * [Capistrano Karafka Actions CI](https://github.com/karafka/capistrano-karafka/actions?query=workflow%3Aci)
94
98
  * [Capistrano Karafka Coditsu](https://app.coditsu.io/karafka/repositories/capistrano-karafka)
95
99
 
96
100
  ## Note on contributions
97
101
 
98
102
  First, thank you for considering contributing to Capistrano Karafka! It's people like you that make the open source community such a great community!
99
103
 
100
- Each pull request must pass all the rspec specs and meet our quality requirements.
104
+ Each pull request must pass all the RSpec specs and meet our quality requirements.
101
105
 
102
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.
103
107
 
104
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.
105
-
106
- [![coditsu](https://coditsu.io/assets/quality_bar.svg)](https://app.coditsu.io/karafka/repositories/capistrano-karafka/builds/commit_builds)
@@ -5,10 +5,10 @@ $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.2.0'
8
+ spec.version = '1.4.1'
9
9
  spec.platform = Gem::Platform::RUBY
10
10
  spec.authors = ['Maciej Mensfeld']
11
- spec.email = %w[maciej@coditsu.io]
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'
@@ -16,9 +16,14 @@ Gem::Specification.new do |spec|
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.2'
20
- spec.required_ruby_version = '>= 2.3.0'
19
+ spec.add_dependency 'karafka', '~> 1.4.0'
20
+ spec.required_ruby_version = '>= 2.6.0'
21
21
 
22
+ if $PROGRAM_NAME.end_with?('gem')
23
+ spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
24
+ end
25
+
26
+ spec.cert_chain = %w[certs/mensfeld.pem]
22
27
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec)/}) }
23
28
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
24
29
  spec.require_paths = %w[lib]
@@ -0,0 +1,25 @@
1
+ -----BEGIN CERTIFICATE-----
2
+ MIIEODCCAqCgAwIBAgIBATANBgkqhkiG9w0BAQsFADAjMSEwHwYDVQQDDBhtYWNp
3
+ ZWovREM9bWVuc2ZlbGQvREM9cGwwHhcNMjAwODExMDkxNTM3WhcNMjEwODExMDkx
4
+ NTM3WjAjMSEwHwYDVQQDDBhtYWNpZWovREM9bWVuc2ZlbGQvREM9cGwwggGiMA0G
5
+ CSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQDCpXsCgmINb6lHBXXBdyrgsBPSxC4/
6
+ 2H+weJ6L9CruTiv2+2/ZkQGtnLcDgrD14rdLIHK7t0o3EKYlDT5GhD/XUVhI15JE
7
+ N7IqnPUgexe1fbZArwQ51afxz2AmPQN2BkB2oeQHXxnSWUGMhvcEZpfbxCCJH26w
8
+ hS0Ccsma8yxA6hSlGVhFVDuCr7c2L1di6cK2CtIDpfDaWqnVNJEwBYHIxrCoWK5g
9
+ sIGekVt/admS9gRhIMaIBg+Mshth5/DEyWO2QjteTodItlxfTctrfmiAl8X8T5JP
10
+ VXeLp5SSOJ5JXE80nShMJp3RFnGw5fqjX/ffjtISYh78/By4xF3a25HdWH9+qO2Z
11
+ tx0wSGc9/4gqNM0APQnjN/4YXrGZ4IeSjtE+OrrX07l0TiyikzSLFOkZCAp8oBJi
12
+ Fhlosz8xQDJf7mhNxOaZziqASzp/hJTU/tuDKl5+ql2icnMv5iV/i6SlmvU29QNg
13
+ LCV71pUv0pWzN+OZbHZKWepGhEQ3cG9MwvkCAwEAAaN3MHUwCQYDVR0TBAIwADAL
14
+ BgNVHQ8EBAMCBLAwHQYDVR0OBBYEFImGed2AXS070ohfRidiCEhXEUN+MB0GA1Ud
15
+ EQQWMBSBEm1hY2llakBtZW5zZmVsZC5wbDAdBgNVHRIEFjAUgRJtYWNpZWpAbWVu
16
+ c2ZlbGQucGwwDQYJKoZIhvcNAQELBQADggGBAKiHpwoENVrMi94V1zD4o8/6G3AU
17
+ gWz4udkPYHTZLUy3dLznc/sNjdkJFWT3E6NKYq7c60EpJ0m0vAEg5+F5pmNOsvD3
18
+ 2pXLj9kisEeYhR516HwXAvtngboUcb75skqvBCU++4Pu7BRAPjO1/ihLSBexbwSS
19
+ fF+J5OWNuyHHCQp+kGPLtXJe2yUYyvSWDj3I2//Vk0VhNOIlaCS1+5/P3ZJThOtm
20
+ zJUBI7h3HgovwRpcnmk2mXTmU4Zx/bCzX8EA6VY0khEvnmiq7S6eBF0H9qH8KyQ6
21
+ EkVLpvmUDFcf/uNaBQdazEMB5jYtwoA8gQlANETNGPi51KlkukhKgaIEDMkBDJOx
22
+ 65N7DzmkcyY0/GwjIVIxmRhcrCt1YeCUElmfFx0iida1/YRm6sB2AXqScc1+ECRi
23
+ 2DND//YJUikn1zwbz1kT70XmHd97B4Eytpln7K+M1u2g1pHVEPW4owD/ammXNpUy
24
+ nt70FcDD4yxJQ+0YNiHd0N8IcVBM1TMIVctMNQ==
25
+ -----END CERTIFICATE-----
metadata CHANGED
@@ -1,14 +1,40 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-karafka
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Maciej Mensfeld
8
8
  autorequire:
9
9
  bindir: bin
10
- cert_chain: []
11
- date: 2018-03-23 00:00:00.000000000 Z
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIEODCCAqCgAwIBAgIBATANBgkqhkiG9w0BAQsFADAjMSEwHwYDVQQDDBhtYWNp
14
+ ZWovREM9bWVuc2ZlbGQvREM9cGwwHhcNMjAwODExMDkxNTM3WhcNMjEwODExMDkx
15
+ NTM3WjAjMSEwHwYDVQQDDBhtYWNpZWovREM9bWVuc2ZlbGQvREM9cGwwggGiMA0G
16
+ CSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQDCpXsCgmINb6lHBXXBdyrgsBPSxC4/
17
+ 2H+weJ6L9CruTiv2+2/ZkQGtnLcDgrD14rdLIHK7t0o3EKYlDT5GhD/XUVhI15JE
18
+ N7IqnPUgexe1fbZArwQ51afxz2AmPQN2BkB2oeQHXxnSWUGMhvcEZpfbxCCJH26w
19
+ hS0Ccsma8yxA6hSlGVhFVDuCr7c2L1di6cK2CtIDpfDaWqnVNJEwBYHIxrCoWK5g
20
+ sIGekVt/admS9gRhIMaIBg+Mshth5/DEyWO2QjteTodItlxfTctrfmiAl8X8T5JP
21
+ VXeLp5SSOJ5JXE80nShMJp3RFnGw5fqjX/ffjtISYh78/By4xF3a25HdWH9+qO2Z
22
+ tx0wSGc9/4gqNM0APQnjN/4YXrGZ4IeSjtE+OrrX07l0TiyikzSLFOkZCAp8oBJi
23
+ Fhlosz8xQDJf7mhNxOaZziqASzp/hJTU/tuDKl5+ql2icnMv5iV/i6SlmvU29QNg
24
+ LCV71pUv0pWzN+OZbHZKWepGhEQ3cG9MwvkCAwEAAaN3MHUwCQYDVR0TBAIwADAL
25
+ BgNVHQ8EBAMCBLAwHQYDVR0OBBYEFImGed2AXS070ohfRidiCEhXEUN+MB0GA1Ud
26
+ EQQWMBSBEm1hY2llakBtZW5zZmVsZC5wbDAdBgNVHRIEFjAUgRJtYWNpZWpAbWVu
27
+ c2ZlbGQucGwwDQYJKoZIhvcNAQELBQADggGBAKiHpwoENVrMi94V1zD4o8/6G3AU
28
+ gWz4udkPYHTZLUy3dLznc/sNjdkJFWT3E6NKYq7c60EpJ0m0vAEg5+F5pmNOsvD3
29
+ 2pXLj9kisEeYhR516HwXAvtngboUcb75skqvBCU++4Pu7BRAPjO1/ihLSBexbwSS
30
+ fF+J5OWNuyHHCQp+kGPLtXJe2yUYyvSWDj3I2//Vk0VhNOIlaCS1+5/P3ZJThOtm
31
+ zJUBI7h3HgovwRpcnmk2mXTmU4Zx/bCzX8EA6VY0khEvnmiq7S6eBF0H9qH8KyQ6
32
+ EkVLpvmUDFcf/uNaBQdazEMB5jYtwoA8gQlANETNGPi51KlkukhKgaIEDMkBDJOx
33
+ 65N7DzmkcyY0/GwjIVIxmRhcrCt1YeCUElmfFx0iida1/YRm6sB2AXqScc1+ECRi
34
+ 2DND//YJUikn1zwbz1kT70XmHd97B4Eytpln7K+M1u2g1pHVEPW4owD/ammXNpUy
35
+ nt70FcDD4yxJQ+0YNiHd0N8IcVBM1TMIVctMNQ==
36
+ -----END CERTIFICATE-----
37
+ date: 2021-04-21 00:00:00.000000000 Z
12
38
  dependencies:
13
39
  - !ruby/object:Gem::Dependency
14
40
  name: capistrano
@@ -44,30 +70,35 @@ dependencies:
44
70
  requirements:
45
71
  - - "~>"
46
72
  - !ruby/object:Gem::Version
47
- version: '1.2'
73
+ version: 1.4.0
48
74
  type: :runtime
49
75
  prerelease: false
50
76
  version_requirements: !ruby/object:Gem::Requirement
51
77
  requirements:
52
78
  - - "~>"
53
79
  - !ruby/object:Gem::Version
54
- version: '1.2'
80
+ version: 1.4.0
55
81
  description: Karafka integration for Capistrano
56
82
  email:
57
- - maciej@coditsu.io
83
+ - maciej@mensfeld.pl
58
84
  executables: []
59
85
  extensions: []
60
86
  extra_rdoc_files: []
61
87
  files:
88
+ - ".coditsu/ci.yml"
89
+ - ".diffend.yml"
90
+ - ".github/FUNDING.yml"
91
+ - ".github/workflows/ci.yml"
62
92
  - ".gitignore"
63
93
  - ".ruby-gemset"
64
94
  - ".ruby-version"
65
95
  - CHANGELOG.md
66
96
  - Gemfile
67
97
  - Gemfile.lock
68
- - MIT-LICENCE
98
+ - MIT-LICENSE
69
99
  - README.md
70
100
  - capistrano-karafka.gemspec
101
+ - certs/mensfeld.pem
71
102
  - lib/capistrano-karafka.rb
72
103
  - lib/capistrano/karafka.rb
73
104
  - lib/capistrano/tasks/karafka.cap
@@ -87,15 +118,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
87
118
  requirements:
88
119
  - - ">="
89
120
  - !ruby/object:Gem::Version
90
- version: 2.3.0
121
+ version: 2.6.0
91
122
  required_rubygems_version: !ruby/object:Gem::Requirement
92
123
  requirements:
93
124
  - - ">="
94
125
  - !ruby/object:Gem::Version
95
126
  version: '0'
96
127
  requirements: []
97
- rubyforge_project:
98
- rubygems_version: 2.7.6
128
+ rubygems_version: 3.2.15
99
129
  signing_key:
100
130
  specification_version: 4
101
131
  summary: Karafka integration for Capistrano
metadata.gz.sig ADDED
Binary file
data/MIT-LICENCE DELETED
@@ -1,18 +0,0 @@
1
- Permission is hereby granted, free of charge, to any person obtaining
2
- a copy of this software and associated documentation files (the
3
- "Software"), to deal in the Software without restriction, including
4
- without limitation the rights to use, copy, modify, merge, publish,
5
- distribute, sublicense, and/or sell copies of the Software, and to
6
- permit persons to whom the Software is furnished to do so, subject to
7
- the following conditions:
8
-
9
- The above copyright notice and this permission notice shall be
10
- included in all copies or substantial portions of the Software.
11
-
12
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.