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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 04bb4b887c5dbf5f6c558771b78278589212ffbac474bf856ac431f9da6b9c2e
4
- data.tar.gz: 9befff3cd099e8326950d9a5dd3ff759acf44a2afa3e7c2f4b0bbc36ef2cc9ba
3
+ metadata.gz: ada3a8021987b87e7f35539124ae5fe1da68d5354574b43a779ad09e3b83117e
4
+ data.tar.gz: 54a4033b5db4d7f52f2127558e0fb0fe90aa07dbd77dad48b3b01bc24ca64651
5
5
  SHA512:
6
- metadata.gz: 0cdbe62c2f3bb36a995172258011e0dea87e2f14f928dc79d8ba1cc2557de4f0db74271bb347961e56c29c8903be04aca01923af18ef166cee7476488e5ac4f7
7
- data.tar.gz: b4da1d214e985c93442ec8a0aedebc8c681b9ab1a6f19e4010006260ba0782cf343e67e7e73a6fa5c187ee2b123496b78bde9f04ddc92338bd781f866d6a0de4
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))
@@ -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
@@ -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.12.0'
6
+ VERSION = '1.13.0'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
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: 1.12.0
4
+ version: 1.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer