rimless 1.10.0 → 1.10.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: de979febab99ce6dfef68a6e74f31153431030bdb4f74c95d6a5405ba834390b
4
- data.tar.gz: b19aabf3263bcef2191635da4a288a4e1260557409a45b0bfb9704dc105e2246
3
+ metadata.gz: 7d000449f6e058356a1826d319f3223dd0d87f0cb6cd0852e31540ebb31bf169
4
+ data.tar.gz: 65983b9773597313a88a07e252d8542bcc8624cf739229f1b84138b75e5d8d33
5
5
  SHA512:
6
- metadata.gz: 5423dd559bbad4a9bf8b0a564acbea9521fd340d3af6b2e0eb8eb4680b960b68175bf744428ba07d4cbb3a24f27d508f9d6b653088b19fb96d5cc63796807f0d
7
- data.tar.gz: c1c760ee3339a7cff79ceb102d1db3ecb472f21b719991d6e15276d1d5fbfb9b1788814c7af593d7d46ad8fb1681cb2a0d91b31871b6351d11fa0b78f7dead64
6
+ metadata.gz: cbb36e7b25d7dd458c86340dbbaede6840fd3553c918d0e8adfc39ef4e91603ed2f45bd957d94f0166a2e5b50fa9e1aca7d8c8c2bf7465a697af8ccc420e9856
7
+ data.tar.gz: 9c4563ce880bcf05cae68c85d6db6b00b07b12674f552e861c823f8feec5b9ae2cb04ecae898c3cbe6c997b0e4905b50817beeaa5f064d32280582dd072f9093
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.10.1 (13 January 2025)
6
+
7
+ * Do not eager load the configuration (#47)
8
+
5
9
  ### 1.10.0 (11 January 2025)
6
10
 
7
11
  * 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.1'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
data/lib/rimless.rb CHANGED
@@ -32,6 +32,8 @@ module Rimless
32
32
  loader.ignore(root_path.join('tasks*'))
33
33
  loader.ignore(root_path.join('railtie.rb'))
34
34
  loader.ignore(root_path.join('rspec*'))
35
+ loader.do_not_eager_load(root_path.join('configuration.rb'))
36
+ loader.do_not_eager_load(root_path.join('consumer_job.rb'))
35
37
 
36
38
  # Finish the auto loader configuration
37
39
  loader.setup
@@ -50,6 +52,6 @@ module Rimless
50
52
  include Rimless::Dependencies
51
53
  include Rimless::Consumer
52
54
 
53
- # Make sure to eager load all SDK constants
55
+ # Make sure to eager load all constants
54
56
  loader.eager_load
55
57
  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.1
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-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport