rimless 3.7.0 → 3.8.0
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/CHANGELOG.md +4 -0
- data/lib/rimless/consumer/job.rb +3 -0
- data/lib/rimless/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 91ef2adfae546cbc1882969edc42add80022f60fe9b98f06d3a1333a1149cea9
|
|
4
|
+
data.tar.gz: 8112ee51c29612a545da248c95d9d3004c384e9487ad3822f653089d2ad7b850
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0afc0844938cbb5827ad2f530000d8644de498bcc74c9d9018e600588ed4a539e0520ad398ebd356c2df3eebc3cb88cdc41d7cb7925e541df2d1821afaf505af
|
|
7
|
+
data.tar.gz: 61b3b3078bcb28e32535f86569a84bf48b4fdd591ce2f491a8a10064c7d0ecd2338768717899c8d10d1aa978ac4b6d6474e0efb96bc70ae2a9c2681d50208a88
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
* TODO: Replace this bullet point with an actual description of a change.
|
|
4
4
|
|
|
5
|
+
### 3.8.0 (21 September 2026)
|
|
6
|
+
|
|
7
|
+
* Corrected some RuboCop glitches ([#81](https://github.com/hausgold/rimless/pull/81))
|
|
8
|
+
|
|
5
9
|
### 3.7.0 (27 August 2026)
|
|
6
10
|
|
|
7
11
|
* Corrected some RuboCop glitches ([#80](https://github.com/hausgold/rimless/pull/80))
|
data/lib/rimless/consumer/job.rb
CHANGED
|
@@ -4,6 +4,9 @@ module Rimless
|
|
|
4
4
|
module Consumer
|
|
5
5
|
# A simple consumer job, enqueued by the job bridge, after a message was
|
|
6
6
|
# consumed from an Apache Kafka topic.
|
|
7
|
+
#
|
|
8
|
+
# rubocop:disable-next Rails/ApplicationJob -- because we're not at a
|
|
9
|
+
# Rails application here
|
|
7
10
|
class Job < ActiveJob::Base
|
|
8
11
|
# Configure the default job queue
|
|
9
12
|
queue_as Rimless.configuration.consumer_job_queue
|
data/lib/rimless/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rimless
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.8.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hermann Mayer
|
|
@@ -279,7 +279,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
279
279
|
- !ruby/object:Gem::Version
|
|
280
280
|
version: '0'
|
|
281
281
|
requirements: []
|
|
282
|
-
rubygems_version: 4.0.
|
|
282
|
+
rubygems_version: 4.0.20
|
|
283
283
|
specification_version: 4
|
|
284
284
|
summary: A bundle of opinionated Apache Kafka / Confluent Schema Registry helpers.
|
|
285
285
|
test_files: []
|