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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/rimless/version.rb +1 -1
- data/lib/rimless.rb +4 -1
- 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: 27b650aaf7c20d75597f2561cb35bed6448b2702d2e05ba2059e95d739df3aa2
|
4
|
+
data.tar.gz: ed8a374775368fd686f287efd581056d0ad9c22d45b46c44178f907f16eb19f5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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)
|
data/lib/rimless/version.rb
CHANGED
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
|
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.
|
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
|
+
date: 2025-01-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|