rimless 1.12.0 → 1.13.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.rb +10 -0
- data/lib/rimless/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ada3a8021987b87e7f35539124ae5fe1da68d5354574b43a779ad09e3b83117e
|
4
|
+
data.tar.gz: 54a4033b5db4d7f52f2127558e0fb0fe90aa07dbd77dad48b3b01bc24ca64651
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 51bf3e2daac95336b98bad54fea5352defdc47eac586c5cd161a17448cd78a66c701ad8df407f4b14556e216e2718824f146f227e7cd0934953549f06403b021
|
7
|
+
data.tar.gz: f99b740018aabfd2429ddb3a0af4ea80610aed551da0faa0127690dc15b4cf17ee497c29fc354cfe620295505f1809e58e1ab05bae3ffa1c4914a636068300ef
|
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
|
+
### 1.13.0 (27 February 2025)
|
6
|
+
|
7
|
+
* Added support for Sidekiq 7 in conjunction with Rails ([#52](https://github.com/hausgold/rimless/pull/52))
|
8
|
+
|
5
9
|
### 1.12.0 (27 February 2025)
|
6
10
|
|
7
11
|
* Corrected some RuboCop glitches ([#50](https://github.com/hausgold/rimless/pull/50))
|
data/lib/rimless/consumer.rb
CHANGED
@@ -48,6 +48,16 @@ module Rimless
|
|
48
48
|
|
49
49
|
ENV['RAILS_ENV'] ||= 'development'
|
50
50
|
ENV['KARAFKA_ENV'] = ENV.fetch('RAILS_ENV', nil)
|
51
|
+
|
52
|
+
# This is relevant for Karafka server processes, as the +karafka.rb+
|
53
|
+
# root file just requires +rimless+ and then we require
|
54
|
+
# +karafka-sidekiq-backend+ which in fact requires +sidekiq+ before
|
55
|
+
# +rails+ was required. We cannot change the order here, but we can
|
56
|
+
# explicitly load the Sidekiq/Rails integration as we know at this
|
57
|
+
# point that we should load Rails and we're going to use Sidekiq, too.
|
58
|
+
# See: https://bit.ly/3D8ZHj3
|
59
|
+
require 'sidekiq/rails'
|
60
|
+
|
51
61
|
require rails_env
|
52
62
|
Rails.application.eager_load!
|
53
63
|
end
|
data/lib/rimless/version.rb
CHANGED