rimless 1.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d94b5db1c219992a8e7f2470a33c5c260065d19ad9c678fdbe7c34d8d7eac5ef
4
- data.tar.gz: 208ec10f307dc7b777b656cdeb0c5e959cbc1cc33206fe62cc7655e59823b1cd
3
+ metadata.gz: a6e582f19428db0fcb6ab242b81bb51fd465bfeef48c927fbc692384c672b533
4
+ data.tar.gz: c61759fa3351deb5fcaff4f4381720e93e908df13172d8b1327bb0408c7b94a3
5
5
  SHA512:
6
- metadata.gz: 999b3384beea7efb59e9a78a12b721d15f5333ae0ed8f8dc2d5462301a179430083c6947507ca05308370257d6a822ff8b7787db08fc353e609bf00d6d0a068b
7
- data.tar.gz: 26f9863a2d2252007027d4f3229f1c1883e0156cb12d56941fde1f203b4eb7057a7f5fb5ce5a8a76d810f923e7940a71ac198b82ec70c2c9599abbc2d5cee838
6
+ metadata.gz: 481fcbe51c58b8ed614ca65ad47cdb95d534ffce6b30b7ce86c636159df885212bef01a777655f26b4bd13e08aa05b94a98787f709c3a680712be67117881038
7
+ data.tar.gz: 62e61b02251048d64f3f508adea01b60cffc7fddeafed7375b9424223af6b683843a392d10130b2a454c2acd5d4c0c9180f59ab49bc2472d7ab0059f5e503002
@@ -25,6 +25,7 @@ jobs:
25
25
  uses: hausgold/actions/ci@master
26
26
  with:
27
27
  clone_token: '${{ secrets.CLONE_TOKEN }}'
28
+ settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
28
29
  settings: '${{ github.repository }}'
29
30
  target: ci/gem-test
30
31
 
@@ -0,0 +1,48 @@
1
+ name: Release
2
+ run-name: Release ${{ github.event.inputs.VERSION }}
3
+
4
+ on:
5
+ workflow_dispatch:
6
+ inputs:
7
+ VERSION:
8
+ description: The new version to release. (eg. `1.0.0`) Check the
9
+ changelog for the latest version.
10
+
11
+ concurrency:
12
+ group: '${{ github.event.inputs.VERSION }}'
13
+ cancel-in-progress: true
14
+
15
+ jobs:
16
+ docs:
17
+ name: Release the gem
18
+ runs-on: ubuntu-22.04
19
+ timeout-minutes: 5
20
+ steps:
21
+ - uses: actions/checkout@v3
22
+
23
+ - name: Install Ruby 2.5
24
+ uses: ruby/setup-ruby@v1
25
+ with:
26
+ ruby-version: 2.5
27
+ bundler-cache: true
28
+ rubygems: '3.3.26'
29
+
30
+ - name: Prepare the virtual environment
31
+ uses: hausgold/actions/ci@master
32
+ with:
33
+ clone_token: '${{ secrets.CLONE_TOKEN }}'
34
+ settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
35
+ settings: '${{ github.repository }}'
36
+ target: ci/gem-test
37
+
38
+ - name: Switch to SSH remotes for the Git repository
39
+ run: git-ssh-remotes
40
+
41
+ - name: Enforce version '${{ github.event.inputs.VERSION }}'
42
+ run: set-gem-version '${{ github.event.inputs.VERSION }}'
43
+
44
+ - name: Prepare the Git release commit
45
+ run: git-release-commit '${{ github.event.inputs.VERSION }}'
46
+
47
+ - name: Push the release Git commit/tag and package to the registry
48
+ run: make release
@@ -36,6 +36,7 @@ jobs:
36
36
  uses: hausgold/actions/ci@master
37
37
  with:
38
38
  clone_token: '${{ secrets.CLONE_TOKEN }}'
39
+ settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
39
40
  settings: '${{ github.repository }}'
40
41
  target: ci/gem-test
41
42
 
@@ -56,6 +57,7 @@ jobs:
56
57
  uses: hausgold/actions/ci@master
57
58
  with:
58
59
  clone_token: '${{ secrets.CLONE_TOKEN }}'
60
+ settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
59
61
  settings: '${{ github.repository }}'
60
62
  target: ci/noop
61
63
 
data/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ### next
2
+
3
+ * TODO: Replace this bullet point with an actual description of a change.
4
+
5
+ ### 1.4.1
6
+
7
+ * Moved the development dependencies from the gemspec to the Gemfile (#29)
8
+ * Pinned Karafka gem <1.4.15 in order to suppress the
9
+ `I_ACCEPT_CRITICAL_ERRORS_IN_KARAFKA_1_4=true` agony (#30)
10
+
11
+ ### 1.4.0
12
+
13
+ * Added support for Gem release automation
14
+
1
15
  ### 1.3.0
2
16
 
3
17
  * Bundler >= 2.3 is from now on required as minimal version (#19)
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at development@hausgold.de. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile CHANGED
@@ -6,3 +6,22 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
6
6
 
7
7
  # Specify your gem's dependencies in grape-jwt-authentication.gemspec
8
8
  gemspec
9
+
10
+ # Development dependencies
11
+ gem 'appraisal', '~> 2.4'
12
+ gem 'bundler', '~> 2.3'
13
+ gem 'countless', '~> 1.1'
14
+ gem 'factory_bot', '~> 6.2'
15
+ gem 'guard-rspec', '~> 4.7'
16
+ gem 'railties', '>= 5.2'
17
+ gem 'rake', '~> 13.0'
18
+ gem 'redcarpet', '~> 3.5'
19
+ gem 'rspec', '~> 3.12'
20
+ gem 'rubocop', '~> 1.28'
21
+ gem 'rubocop-rails', '~> 2.14'
22
+ gem 'rubocop-rspec', '~> 2.10'
23
+ gem 'simplecov', '>= 0.22'
24
+ gem 'timecop', '>= 0.9.6'
25
+ gem 'vcr', '~> 6.0'
26
+ gem 'yard', '>= 0.9.28'
27
+ gem 'yard-activesupport-concern', '>= 0.0.1'
data/README.md CHANGED
@@ -32,7 +32,9 @@ opinionated framework which sets up solid conventions for producing messages.
32
32
  - [Handling of schemaless deep blobs](#handling-of-schemaless-deep-blobs)
33
33
  - [Writing tests for your messages](#writing-tests-for-your-messages)
34
34
  - [Development](#development)
35
+ - [Code of Conduct](#code-of-conduct)
35
36
  - [Contributing](#contributing)
37
+ - [Releasing](#releasing)
36
38
 
37
39
  ## Installation
38
40
 
@@ -587,17 +589,28 @@ end
587
589
 
588
590
  ## Development
589
591
 
590
- After checking out the repo, run `bin/setup` to install dependencies. Then, run
591
- `bundle exec rake spec` to run the tests. You can also run `bin/console` for an
592
+ After checking out the repo, run `make install` to install dependencies. Then,
593
+ run `make test` to run the tests. You can also run `make shell-irb` for an
592
594
  interactive prompt that will allow you to experiment.
593
595
 
594
- To install this gem onto your local machine, run `bundle exec rake install`. To
595
- release a new version, update the version number in `version.rb`, and then run
596
- `bundle exec rake release`, which will create a git tag for the version, push
597
- git commits and tags, and push the `.gem` file to
598
- [rubygems.org](https://rubygems.org).
596
+ ## Code of Conduct
597
+
598
+ Everyone interacting in the project codebase, issue tracker, chat
599
+ rooms and mailing lists is expected to follow the [code of
600
+ conduct](./CODE_OF_CONDUCT.md).
599
601
 
600
602
  ## Contributing
601
603
 
602
604
  Bug reports and pull requests are welcome on GitHub at
603
- https://github.com/hausgold/rimless.
605
+ https://github.com/hausgold/rimless. Make sure that every pull request adds
606
+ a bullet point to the [changelog](./CHANGELOG.md) file with a reference to the
607
+ actual pull request.
608
+
609
+ ## Releasing
610
+
611
+ The release process of this Gem is fully automated. You just need to open the
612
+ Github Actions [Release
613
+ Workflow](https://github.com/hausgold/rimless/actions/workflows/release.yml)
614
+ and trigger a new run via the **Run workflow** button. Insert the new version
615
+ number (check the [changelog](./CHANGELOG.md) first for the latest release) and
616
+ you're done.
@@ -2,7 +2,23 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "activesupport", "~> 5.2.0"
5
+ gem "appraisal", "~> 2.4"
6
+ gem "bundler", "~> 2.3"
7
+ gem "countless", "~> 1.1"
8
+ gem "factory_bot", "~> 6.2"
9
+ gem "guard-rspec", "~> 4.7"
6
10
  gem "railties", "~> 5.2.0"
11
+ gem "rake", "~> 13.0"
12
+ gem "redcarpet", "~> 3.5"
13
+ gem "rspec", "~> 3.12"
14
+ gem "rubocop", "~> 1.28"
15
+ gem "rubocop-rails", "~> 2.14"
16
+ gem "rubocop-rspec", "~> 2.10"
17
+ gem "simplecov", ">= 0.22"
18
+ gem "timecop", ">= 0.9.6"
19
+ gem "vcr", "~> 6.0"
20
+ gem "yard", ">= 0.9.28"
21
+ gem "yard-activesupport-concern", ">= 0.0.1"
22
+ gem "activesupport", "~> 5.2.0"
7
23
 
8
24
  gemspec path: "../"
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module Rimless
5
5
  # The version of the +rimless+ gem
6
- VERSION = '1.3.0'
6
+ VERSION = '1.4.1'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
data/rimless.gemspec CHANGED
@@ -37,29 +37,11 @@ Gem::Specification.new do |spec|
37
37
 
38
38
  spec.add_runtime_dependency 'activesupport', '>= 5.2'
39
39
  spec.add_runtime_dependency 'avro_turf', '~> 0.11.0'
40
- spec.add_runtime_dependency 'karafka', '~> 1.4'
40
+ spec.add_runtime_dependency 'karafka', '~> 1.4', '< 1.4.15'
41
41
  spec.add_runtime_dependency 'karafka-sidekiq-backend', '~> 1.4'
42
42
  spec.add_runtime_dependency 'karafka-testing', '~> 1.4'
43
43
  spec.add_runtime_dependency 'sinatra', '~> 2.2'
44
44
  spec.add_runtime_dependency 'sparsify', '~> 1.1'
45
45
  spec.add_runtime_dependency 'waterdrop', '~> 1.4'
46
46
  spec.add_runtime_dependency 'webmock', '~> 3.18'
47
-
48
- spec.add_development_dependency 'appraisal', '~> 2.4'
49
- spec.add_development_dependency 'bundler', '~> 2.3'
50
- spec.add_development_dependency 'countless', '~> 1.1'
51
- spec.add_development_dependency 'factory_bot', '~> 6.2'
52
- spec.add_development_dependency 'guard-rspec', '~> 4.7'
53
- spec.add_development_dependency 'railties', '>= 5.2'
54
- spec.add_development_dependency 'rake', '~> 13.0'
55
- spec.add_development_dependency 'redcarpet', '~> 3.5'
56
- spec.add_development_dependency 'rspec', '~> 3.12'
57
- spec.add_development_dependency 'rubocop', '~> 1.28'
58
- spec.add_development_dependency 'rubocop-rails', '~> 2.14'
59
- spec.add_development_dependency 'rubocop-rspec', '~> 2.10'
60
- spec.add_development_dependency 'simplecov', '>= 0.22'
61
- spec.add_development_dependency 'timecop', '>= 0.9.6'
62
- spec.add_development_dependency 'vcr', '~> 6.0'
63
- spec.add_development_dependency 'yard', '>= 0.9.28'
64
- spec.add_development_dependency 'yard-activesupport-concern', '>= 0.0.1'
65
47
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rimless
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-01-18 00:00:00.000000000 Z
11
+ date: 2023-07-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -45,6 +45,9 @@ dependencies:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: '1.4'
48
+ - - "<"
49
+ - !ruby/object:Gem::Version
50
+ version: 1.4.15
48
51
  type: :runtime
49
52
  prerelease: false
50
53
  version_requirements: !ruby/object:Gem::Requirement
@@ -52,6 +55,9 @@ dependencies:
52
55
  - - "~>"
53
56
  - !ruby/object:Gem::Version
54
57
  version: '1.4'
58
+ - - "<"
59
+ - !ruby/object:Gem::Version
60
+ version: 1.4.15
55
61
  - !ruby/object:Gem::Dependency
56
62
  name: karafka-sidekiq-backend
57
63
  requirement: !ruby/object:Gem::Requirement
@@ -136,244 +142,6 @@ dependencies:
136
142
  - - "~>"
137
143
  - !ruby/object:Gem::Version
138
144
  version: '3.18'
139
- - !ruby/object:Gem::Dependency
140
- name: appraisal
141
- requirement: !ruby/object:Gem::Requirement
142
- requirements:
143
- - - "~>"
144
- - !ruby/object:Gem::Version
145
- version: '2.4'
146
- type: :development
147
- prerelease: false
148
- version_requirements: !ruby/object:Gem::Requirement
149
- requirements:
150
- - - "~>"
151
- - !ruby/object:Gem::Version
152
- version: '2.4'
153
- - !ruby/object:Gem::Dependency
154
- name: bundler
155
- requirement: !ruby/object:Gem::Requirement
156
- requirements:
157
- - - "~>"
158
- - !ruby/object:Gem::Version
159
- version: '2.3'
160
- type: :development
161
- prerelease: false
162
- version_requirements: !ruby/object:Gem::Requirement
163
- requirements:
164
- - - "~>"
165
- - !ruby/object:Gem::Version
166
- version: '2.3'
167
- - !ruby/object:Gem::Dependency
168
- name: countless
169
- requirement: !ruby/object:Gem::Requirement
170
- requirements:
171
- - - "~>"
172
- - !ruby/object:Gem::Version
173
- version: '1.1'
174
- type: :development
175
- prerelease: false
176
- version_requirements: !ruby/object:Gem::Requirement
177
- requirements:
178
- - - "~>"
179
- - !ruby/object:Gem::Version
180
- version: '1.1'
181
- - !ruby/object:Gem::Dependency
182
- name: factory_bot
183
- requirement: !ruby/object:Gem::Requirement
184
- requirements:
185
- - - "~>"
186
- - !ruby/object:Gem::Version
187
- version: '6.2'
188
- type: :development
189
- prerelease: false
190
- version_requirements: !ruby/object:Gem::Requirement
191
- requirements:
192
- - - "~>"
193
- - !ruby/object:Gem::Version
194
- version: '6.2'
195
- - !ruby/object:Gem::Dependency
196
- name: guard-rspec
197
- requirement: !ruby/object:Gem::Requirement
198
- requirements:
199
- - - "~>"
200
- - !ruby/object:Gem::Version
201
- version: '4.7'
202
- type: :development
203
- prerelease: false
204
- version_requirements: !ruby/object:Gem::Requirement
205
- requirements:
206
- - - "~>"
207
- - !ruby/object:Gem::Version
208
- version: '4.7'
209
- - !ruby/object:Gem::Dependency
210
- name: railties
211
- requirement: !ruby/object:Gem::Requirement
212
- requirements:
213
- - - ">="
214
- - !ruby/object:Gem::Version
215
- version: '5.2'
216
- type: :development
217
- prerelease: false
218
- version_requirements: !ruby/object:Gem::Requirement
219
- requirements:
220
- - - ">="
221
- - !ruby/object:Gem::Version
222
- version: '5.2'
223
- - !ruby/object:Gem::Dependency
224
- name: rake
225
- requirement: !ruby/object:Gem::Requirement
226
- requirements:
227
- - - "~>"
228
- - !ruby/object:Gem::Version
229
- version: '13.0'
230
- type: :development
231
- prerelease: false
232
- version_requirements: !ruby/object:Gem::Requirement
233
- requirements:
234
- - - "~>"
235
- - !ruby/object:Gem::Version
236
- version: '13.0'
237
- - !ruby/object:Gem::Dependency
238
- name: redcarpet
239
- requirement: !ruby/object:Gem::Requirement
240
- requirements:
241
- - - "~>"
242
- - !ruby/object:Gem::Version
243
- version: '3.5'
244
- type: :development
245
- prerelease: false
246
- version_requirements: !ruby/object:Gem::Requirement
247
- requirements:
248
- - - "~>"
249
- - !ruby/object:Gem::Version
250
- version: '3.5'
251
- - !ruby/object:Gem::Dependency
252
- name: rspec
253
- requirement: !ruby/object:Gem::Requirement
254
- requirements:
255
- - - "~>"
256
- - !ruby/object:Gem::Version
257
- version: '3.12'
258
- type: :development
259
- prerelease: false
260
- version_requirements: !ruby/object:Gem::Requirement
261
- requirements:
262
- - - "~>"
263
- - !ruby/object:Gem::Version
264
- version: '3.12'
265
- - !ruby/object:Gem::Dependency
266
- name: rubocop
267
- requirement: !ruby/object:Gem::Requirement
268
- requirements:
269
- - - "~>"
270
- - !ruby/object:Gem::Version
271
- version: '1.28'
272
- type: :development
273
- prerelease: false
274
- version_requirements: !ruby/object:Gem::Requirement
275
- requirements:
276
- - - "~>"
277
- - !ruby/object:Gem::Version
278
- version: '1.28'
279
- - !ruby/object:Gem::Dependency
280
- name: rubocop-rails
281
- requirement: !ruby/object:Gem::Requirement
282
- requirements:
283
- - - "~>"
284
- - !ruby/object:Gem::Version
285
- version: '2.14'
286
- type: :development
287
- prerelease: false
288
- version_requirements: !ruby/object:Gem::Requirement
289
- requirements:
290
- - - "~>"
291
- - !ruby/object:Gem::Version
292
- version: '2.14'
293
- - !ruby/object:Gem::Dependency
294
- name: rubocop-rspec
295
- requirement: !ruby/object:Gem::Requirement
296
- requirements:
297
- - - "~>"
298
- - !ruby/object:Gem::Version
299
- version: '2.10'
300
- type: :development
301
- prerelease: false
302
- version_requirements: !ruby/object:Gem::Requirement
303
- requirements:
304
- - - "~>"
305
- - !ruby/object:Gem::Version
306
- version: '2.10'
307
- - !ruby/object:Gem::Dependency
308
- name: simplecov
309
- requirement: !ruby/object:Gem::Requirement
310
- requirements:
311
- - - ">="
312
- - !ruby/object:Gem::Version
313
- version: '0.22'
314
- type: :development
315
- prerelease: false
316
- version_requirements: !ruby/object:Gem::Requirement
317
- requirements:
318
- - - ">="
319
- - !ruby/object:Gem::Version
320
- version: '0.22'
321
- - !ruby/object:Gem::Dependency
322
- name: timecop
323
- requirement: !ruby/object:Gem::Requirement
324
- requirements:
325
- - - ">="
326
- - !ruby/object:Gem::Version
327
- version: 0.9.6
328
- type: :development
329
- prerelease: false
330
- version_requirements: !ruby/object:Gem::Requirement
331
- requirements:
332
- - - ">="
333
- - !ruby/object:Gem::Version
334
- version: 0.9.6
335
- - !ruby/object:Gem::Dependency
336
- name: vcr
337
- requirement: !ruby/object:Gem::Requirement
338
- requirements:
339
- - - "~>"
340
- - !ruby/object:Gem::Version
341
- version: '6.0'
342
- type: :development
343
- prerelease: false
344
- version_requirements: !ruby/object:Gem::Requirement
345
- requirements:
346
- - - "~>"
347
- - !ruby/object:Gem::Version
348
- version: '6.0'
349
- - !ruby/object:Gem::Dependency
350
- name: yard
351
- requirement: !ruby/object:Gem::Requirement
352
- requirements:
353
- - - ">="
354
- - !ruby/object:Gem::Version
355
- version: 0.9.28
356
- type: :development
357
- prerelease: false
358
- version_requirements: !ruby/object:Gem::Requirement
359
- requirements:
360
- - - ">="
361
- - !ruby/object:Gem::Version
362
- version: 0.9.28
363
- - !ruby/object:Gem::Dependency
364
- name: yard-activesupport-concern
365
- requirement: !ruby/object:Gem::Requirement
366
- requirements:
367
- - - ">="
368
- - !ruby/object:Gem::Version
369
- version: 0.0.1
370
- type: :development
371
- prerelease: false
372
- version_requirements: !ruby/object:Gem::Requirement
373
- requirements:
374
- - - ">="
375
- - !ruby/object:Gem::Version
376
- version: 0.0.1
377
145
  description: A bundle of opinionated Apache Kafka / Confluent Schema Registry helpers.
378
146
  email:
379
147
  - hermann.mayer92@gmail.com
@@ -383,6 +151,7 @@ extra_rdoc_files: []
383
151
  files:
384
152
  - ".editorconfig"
385
153
  - ".github/workflows/documentation.yml"
154
+ - ".github/workflows/release.yml"
386
155
  - ".github/workflows/test.yml"
387
156
  - ".gitignore"
388
157
  - ".rspec"
@@ -391,6 +160,7 @@ files:
391
160
  - ".yardopts"
392
161
  - Appraisals
393
162
  - CHANGELOG.md
163
+ - CODE_OF_CONDUCT.md
394
164
  - Dockerfile
395
165
  - Envfile
396
166
  - Gemfile
@@ -459,7 +229,7 @@ files:
459
229
  - lib/rimless/version.rb
460
230
  - log/development.log
461
231
  - rimless.gemspec
462
- homepage:
232
+ homepage:
463
233
  licenses:
464
234
  - MIT
465
235
  metadata:
@@ -468,7 +238,7 @@ metadata:
468
238
  changelog_uri: https://github.com/hausgold/rimless/blob/master/CHANGELOG.md
469
239
  bug_tracker_uri: https://github.com/hausgold/rimless/issues
470
240
  documentation_uri: https://www.rubydoc.info/gems/rimless
471
- post_install_message:
241
+ post_install_message:
472
242
  rdoc_options: []
473
243
  require_paths:
474
244
  - lib
@@ -483,8 +253,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
483
253
  - !ruby/object:Gem::Version
484
254
  version: '0'
485
255
  requirements: []
486
- rubygems_version: 3.3.8
487
- signing_key:
256
+ rubygems_version: 3.3.26
257
+ signing_key:
488
258
  specification_version: 4
489
259
  summary: A bundle of opinionated Apache Kafka / Confluent Schema Registry helpers.
490
260
  test_files: []