capistrano-karafka 1.2.0.beta2 → 1.4.0

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: 23047b73b551ff4162b97a62107025b9141d1ec1b45330d23e7fdfbb77e8bba2
4
- data.tar.gz: 2d0a8ba64a688caaf3f969db370872ca3a410cb7563d6824040cb04594445e6f
3
+ metadata.gz: f09f6374df4469fd8d7469a6fc7b96d6d89b58af87f44ff867e1468f96d4b4bd
4
+ data.tar.gz: 4bc2a769546bc340e39c19635e819bf4ce7781ecf2d2180ddea7600b82d59a4e
5
5
  SHA512:
6
- metadata.gz: 2718f3a848fe8443c1a4564408ded1711934311f4099fc941b5118ba38c68e2c845a4f3a3bd12209e04a0bcfe8e675bf795d913d7d8ff011fde47de9f73641fe
7
- data.tar.gz: 80417dd57609d42d68ad9865099a0c1a2a1951958df3c1d25e250a6d015a305a61559dba2aa5236cac0d943d79437e02262b44b068c3ab7a712770e4debda2bd
6
+ metadata.gz: 4af805ec59de472233557d05ce2a66bf0be0f50ee5f403566952c9110d114aeb385c6c0d69e24e7e4d8259bc79e90e6a2136c20de40691a46f54e686d103c270
7
+ data.tar.gz: 2f4e0983983d5d8ab9b2df296b3d4d303151981935e79fdc4444aeb7af286ab417100636d13cf3bdbe5b189a3861649fc797f65e9c18d9736b0e4692ada89826
Binary file
Binary file
@@ -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'] %>
@@ -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,44 @@
1
+ name: ci
2
+
3
+ on:
4
+ push:
5
+ schedule:
6
+ - cron: '0 1 * * *'
7
+
8
+ jobs:
9
+ specs:
10
+ runs-on: ubuntu-latest
11
+ strategy:
12
+ fail-fast: false
13
+ matrix:
14
+ ruby:
15
+ - '2.7'
16
+ - '2.6'
17
+ - '2.5'
18
+ include:
19
+ - ruby: '2.7'
20
+ coverage: 'true'
21
+ steps:
22
+ - uses: actions/checkout@v2
23
+ - name: Install package dependencies
24
+ run: "[ -e $APT_DEPS ] || sudo apt-get install -y --no-install-recommends $APT_DEPS"
25
+ - name: Set up Ruby
26
+ uses: ruby/setup-ruby@v1
27
+ with:
28
+ ruby-version: ${{matrix.ruby}}
29
+ - name: Install latest bundler
30
+ run: |
31
+ gem install bundler --no-document
32
+ - name: Bundle install
33
+ run: |
34
+ bundle install --jobs 4 --retry 3
35
+ coditsu:
36
+ runs-on: ubuntu-latest
37
+ strategy:
38
+ fail-fast: false
39
+ steps:
40
+ - uses: actions/checkout@v2
41
+ with:
42
+ fetch-depth: 0
43
+ - name: Run Coditsu
44
+ 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
@@ -1 +1 @@
1
- 2.5.0
1
+ 2.7.1
@@ -1,6 +1,22 @@
1
1
  # Capistrano Karafka changelog
2
2
 
3
- ## 1.2.0.beta2
3
+ ## 1.4.0 (2020-09-05)
4
+ - 1.4 release without any changes to match Karafka releases versioning
5
+
6
+ ## 1.3.1 (2020-04-28)
7
+ - Ruby 2.6.5 support
8
+ - Ruby 2.7.1 support
9
+ - Drop support for Ruby < 2.5
10
+ - Change license to LGPL-3.0
11
+
12
+ ## 1.3.0 (2019-09-09)
13
+ - Final `1.3.0` release
14
+
15
+ ## 1.3.0.rc1 (2019-07-31)
16
+ - Ruby 2.6.3 support
17
+ - Support for Karafka 1.3
18
+
19
+ ## 1.2.0
4
20
  - Ruby 2.4.2 support
5
21
  - Ruby 2.5.0 support
6
22
 
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
@@ -1,113 +1,116 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- capistrano-karafka (1.2.0.beta2)
4
+ capistrano-karafka (1.4.0)
5
5
  capistrano (>= 3.9)
6
- capistrano-bundler
7
- karafka (>= 1.2.0.beta2)
6
+ capistrano-bundler (>= 1.2)
7
+ karafka (~> 1.4.0.rc2)
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.14.1)
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.7)
22
+ delivery_boy (1.0.1)
23
+ king_konf (~> 0.3)
24
+ ruby-kafka (~> 1.0)
25
+ digest-crc (0.6.1)
26
+ rake (~> 13.0)
27
+ dry-configurable (0.11.6)
32
28
  concurrent-ruby (~> 1.0)
33
- dry-container (0.6.0)
29
+ dry-core (~> 0.4, >= 0.4.7)
30
+ dry-equalizer (~> 0.2)
31
+ dry-container (0.7.2)
34
32
  concurrent-ruby (~> 1.0)
35
33
  dry-configurable (~> 0.1, >= 0.1.3)
36
- dry-core (0.4.4)
34
+ dry-core (0.4.9)
37
35
  concurrent-ruby (~> 1.0)
38
- dry-equalizer (0.2.0)
39
- dry-events (0.1.0)
36
+ dry-equalizer (0.3.0)
37
+ dry-events (0.2.0)
40
38
  concurrent-ruby (~> 1.0)
41
39
  dry-core (~> 0.4)
42
40
  dry-equalizer (~> 0.2)
43
- dry-inflector (0.1.1)
44
- dry-logic (0.4.2)
45
- dry-container (~> 0.2, >= 0.2.6)
41
+ dry-inflector (0.2.0)
42
+ dry-initializer (3.0.3)
43
+ dry-logic (1.0.7)
44
+ concurrent-ruby (~> 1.0)
46
45
  dry-core (~> 0.2)
47
46
  dry-equalizer (~> 0.2)
48
- dry-monitor (0.1.2)
47
+ dry-monitor (0.3.2)
49
48
  dry-configurable (~> 0.5)
49
+ dry-core (~> 0.4)
50
50
  dry-equalizer (~> 0.2)
51
- dry-events (~> 0.1)
52
- rouge (~> 2.0, >= 2.2.1)
53
- dry-types (0.12.2)
51
+ dry-events (~> 0.2)
52
+ dry-schema (1.5.4)
54
53
  concurrent-ruby (~> 1.0)
55
- dry-configurable (~> 0.1)
56
- dry-container (~> 0.3)
57
- dry-core (~> 0.2, >= 0.2.1)
54
+ dry-configurable (~> 0.8, >= 0.8.3)
55
+ dry-core (~> 0.4)
58
56
  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)
57
+ dry-initializer (~> 3.0)
58
+ dry-logic (~> 1.0)
59
+ dry-types (~> 1.4)
60
+ dry-types (1.4.0)
62
61
  concurrent-ruby (~> 1.0)
63
- dry-configurable (~> 0.1, >= 0.1.3)
64
- dry-core (~> 0.2, >= 0.2.1)
62
+ dry-container (~> 0.3)
63
+ dry-core (~> 0.4, >= 0.4.4)
64
+ dry-equalizer (~> 0.3)
65
+ dry-inflector (~> 0.1, >= 0.1.2)
66
+ dry-logic (~> 1.0, >= 1.0.2)
67
+ dry-validation (1.5.6)
68
+ concurrent-ruby (~> 1.0)
69
+ dry-container (~> 0.7, >= 0.7.1)
70
+ dry-core (~> 0.4)
65
71
  dry-equalizer (~> 0.2)
66
- dry-logic (~> 0.4, >= 0.4.0)
67
- dry-types (~> 0.12.0)
68
- envlogic (1.0.4)
69
- activesupport
70
- i18n (0.9.5)
72
+ dry-initializer (~> 3.0)
73
+ dry-schema (~> 1.5, >= 1.5.2)
74
+ envlogic (1.1.2)
75
+ dry-inflector (~> 0.1)
76
+ i18n (1.8.5)
71
77
  concurrent-ruby (~> 1.0)
72
- inflecto (0.0.2)
73
- karafka (1.2.0.beta2)
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)
78
+ io-console (0.5.6)
79
+ irb (1.2.4)
80
+ reline (>= 0.0.1)
81
+ karafka (1.4.0.rc2)
82
+ dry-configurable (~> 0.8)
83
+ dry-inflector (~> 0.1)
84
+ dry-monitor (~> 0.3)
85
+ dry-validation (~> 1.2)
86
+ envlogic (~> 1.1)
87
+ irb (~> 1.0)
81
88
  rake (>= 11.3)
82
- require_all (>= 1.4)
83
- ruby-kafka (>= 0.5.3)
84
- thor (~> 0.19)
85
- waterdrop (>= 1.2.0.beta1)
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.4)
93
- rake (12.3.0)
94
- require_all (1.5.0)
95
- rouge (2.2.1)
96
- ruby-kafka (0.5.3)
97
- sshkit (1.16.0)
89
+ ruby-kafka (>= 1.0.0)
90
+ thor (>= 0.20)
91
+ waterdrop (~> 1.4.0)
92
+ zeitwerk (~> 2.1)
93
+ king_konf (0.3.7)
94
+ net-scp (3.0.0)
95
+ net-ssh (>= 2.6.5, < 7.0.0)
96
+ net-ssh (6.1.0)
97
+ rake (13.0.1)
98
+ reline (0.1.4)
99
+ io-console (~> 0.5)
100
+ ruby-kafka (1.2.0)
101
+ digest-crc
102
+ sshkit (1.21.0)
98
103
  net-scp (>= 1.1.2)
99
104
  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.beta1)
105
- delivery_boy (>= 0.2.3)
106
- dry-configurable (~> 0.7)
107
- dry-monitor (~> 0.1)
108
- dry-validation (~> 0.11)
109
- null-logger
110
- ruby-kafka (>= 0.5.3)
105
+ thor (1.0.1)
106
+ waterdrop (1.4.0)
107
+ delivery_boy (>= 0.2, < 2.x)
108
+ dry-configurable (~> 0.8)
109
+ dry-monitor (~> 0.3)
110
+ dry-validation (~> 1.2)
111
+ ruby-kafka (>= 0.7.8)
112
+ zeitwerk (~> 2.1)
113
+ zeitwerk (2.4.0)
111
114
 
112
115
  PLATFORMS
113
116
  ruby
@@ -116,4 +119,4 @@ DEPENDENCIES
116
119
  capistrano-karafka!
117
120
 
118
121
  BUNDLED WITH
119
- 1.16.1
122
+ 2.1.4
data/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
5
  [![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
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,13 +94,14 @@ 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
 
@@ -1,24 +1,29 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- lib = File.expand_path('../lib', __FILE__)
3
+ lib = File.expand_path('lib', __dir__)
4
4
  $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.beta2'
8
+ spec.version = '1.4.0'
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'
15
- spec.license = 'MIT'
15
+ spec.license = 'LGPL-3.0'
16
16
 
17
17
  spec.add_dependency 'capistrano', '>= 3.9'
18
- spec.add_dependency 'capistrano-bundler'
19
- spec.add_dependency 'karafka', '>= 1.2.0.beta2'
20
- spec.required_ruby_version = '>= 2.3.0'
18
+ spec.add_dependency 'capistrano-bundler', '>= 1.2'
19
+ spec.add_dependency 'karafka', '~> 1.4.0.rc2'
20
+ spec.required_ruby_version = '>= 2.5.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.beta2
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Maciej Mensfeld
8
8
  autorequire:
9
9
  bindir: bin
10
- cert_chain: []
11
- date: 2018-02-16 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: 2020-09-05 00:00:00.000000000 Z
12
38
  dependencies:
13
39
  - !ruby/object:Gem::Dependency
14
40
  name: capistrano
@@ -30,44 +56,49 @@ dependencies:
30
56
  requirements:
31
57
  - - ">="
32
58
  - !ruby/object:Gem::Version
33
- version: '0'
59
+ version: '1.2'
34
60
  type: :runtime
35
61
  prerelease: false
36
62
  version_requirements: !ruby/object:Gem::Requirement
37
63
  requirements:
38
64
  - - ">="
39
65
  - !ruby/object:Gem::Version
40
- version: '0'
66
+ version: '1.2'
41
67
  - !ruby/object:Gem::Dependency
42
68
  name: karafka
43
69
  requirement: !ruby/object:Gem::Requirement
44
70
  requirements:
45
- - - ">="
71
+ - - "~>"
46
72
  - !ruby/object:Gem::Version
47
- version: 1.2.0.beta2
73
+ version: 1.4.0.rc2
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.0.beta2
80
+ version: 1.4.0.rc2
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
+ - 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
@@ -77,7 +108,7 @@ files:
77
108
  - lib/capistrano/tasks/karafka/stop.cap
78
109
  homepage: https://github.com/karafka/capistrano-karafka
79
110
  licenses:
80
- - MIT
111
+ - LGPL-3.0
81
112
  metadata: {}
82
113
  post_install_message:
83
114
  rdoc_options: []
@@ -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.5.0
91
122
  required_rubygems_version: !ruby/object:Gem::Requirement
92
123
  requirements:
93
- - - ">"
124
+ - - ">="
94
125
  - !ruby/object:Gem::Version
95
- version: 1.3.1
126
+ version: '0'
96
127
  requirements: []
97
- rubyforge_project:
98
- rubygems_version: 2.7.3
128
+ rubygems_version: 3.1.4
99
129
  signing_key:
100
130
  specification_version: 4
101
131
  summary: Karafka integration for Capistrano
Binary file
@@ -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.