rimless 1.10.0 → 1.10.2

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: de979febab99ce6dfef68a6e74f31153431030bdb4f74c95d6a5405ba834390b
4
- data.tar.gz: b19aabf3263bcef2191635da4a288a4e1260557409a45b0bfb9704dc105e2246
3
+ metadata.gz: 27b650aaf7c20d75597f2561cb35bed6448b2702d2e05ba2059e95d739df3aa2
4
+ data.tar.gz: ed8a374775368fd686f287efd581056d0ad9c22d45b46c44178f907f16eb19f5
5
5
  SHA512:
6
- metadata.gz: 5423dd559bbad4a9bf8b0a564acbea9521fd340d3af6b2e0eb8eb4680b960b68175bf744428ba07d4cbb3a24f27d508f9d6b653088b19fb96d5cc63796807f0d
7
- data.tar.gz: c1c760ee3339a7cff79ceb102d1db3ecb472f21b719991d6e15276d1d5fbfb9b1788814c7af593d7d46ad8fb1681cb2a0d91b31871b6351d11fa0b78f7dead64
6
+ metadata.gz: f4bf4e6e5d43b529fd37e07afacf95a7fc60ca96391384b872754334150b4f624321109b4a8da98529d964941a69ddb9e630c59ae9a4846443358b320b2dc1bd
7
+ data.tar.gz: e819652fb74486e04e3aa5cda997bbda411c4ea105cb44ec3412d93b05366a151f1b5286531231946046d73e9f340c757178592fb64e2718522d5832404b60a9
data/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  * TODO: Replace this bullet point with an actual description of a change.
4
4
 
5
+ ### 1.10.2 (17 January 2025)
6
+
7
+ * Added the logger dependency (#48)
8
+
9
+ ### 1.10.1 (13 January 2025)
10
+
11
+ * Do not eager load the configuration (#47)
12
+
5
13
  ### 1.10.0 (11 January 2025)
6
14
 
7
15
  * Switched to Zeitwerk as autoloader (#46)
@@ -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.10.0'
6
+ VERSION = '1.10.2'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
data/lib/rimless.rb CHANGED
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'zeitwerk'
4
+ require 'logger'
4
5
  require 'active_support'
5
6
  require 'active_support/concern'
6
7
  require 'active_support/configurable'
@@ -32,6 +33,8 @@ module Rimless
32
33
  loader.ignore(root_path.join('tasks*'))
33
34
  loader.ignore(root_path.join('railtie.rb'))
34
35
  loader.ignore(root_path.join('rspec*'))
36
+ loader.do_not_eager_load(root_path.join('configuration.rb'))
37
+ loader.do_not_eager_load(root_path.join('consumer_job.rb'))
35
38
 
36
39
  # Finish the auto loader configuration
37
40
  loader.setup
@@ -50,6 +53,6 @@ module Rimless
50
53
  include Rimless::Dependencies
51
54
  include Rimless::Consumer
52
55
 
53
- # Make sure to eager load all SDK constants
56
+ # Make sure to eager load all constants
54
57
  loader.eager_load
55
58
  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.10.0
4
+ version: 1.10.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-01-11 00:00:00.000000000 Z
11
+ date: 2025-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport