everythingrb 1.0.0 → 1.0.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 +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/everythingrb/version.rb +1 -1
- data/lib/railtie.rb +8 -10
- 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: c39f7ff20c5b77754747cffb69c680e798112352bfcdd9c9fa4b15d92cb9a293
|
|
4
|
+
data.tar.gz: 7285616cb5a5e273c789750968200ea466b9adfc4462698560517a506eb474fb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d4f6dc13f508fb0ea786eb79f54b1b67c1b074b6b8bda612b42cdb186b56bad5394bc6fdc5584393decf4caec0e0573b16016128bd3cdf0e14da2f31c58bfc52
|
|
7
|
+
data.tar.gz: b96fd6aa7cf56325abc0608e4fe692784563e73afc730a85c5c5b9b6f143d179bd6346a8406ef90855c67b8bdb29c213e87b052399b3b195162bc27d06c97af6
|
data/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
15
15
|
### Removed
|
|
16
16
|
-->
|
|
17
17
|
|
|
18
|
+
## [1.0.1] - 12026-04-28
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
- Adjusted Rails initializer to fix an eager_load timing issue
|
|
23
|
+
|
|
18
24
|
## [1.0.0] - 12026-03-21
|
|
19
25
|
|
|
20
26
|
### Added
|
|
@@ -358,6 +364,7 @@ This change aligns our method signatures with Ruby's conventions and matches our
|
|
|
358
364
|
- Added alias `each` to `each_pair` in OpenStruct for better enumerable compatibility
|
|
359
365
|
|
|
360
366
|
[unreleased]: https://github.com/itsthedevman/everythingrb/compare/v1.0.0...HEAD
|
|
367
|
+
[1.0.1]: https://github.com/itsthedevman/everythingrb/compare/v1.0.0...v1.0.1
|
|
361
368
|
[1.0.0]: https://github.com/itsthedevman/everythingrb/compare/v0.9.0...v1.0.0
|
|
362
369
|
[0.9.0]: https://github.com/itsthedevman/everythingrb/compare/v0.8.3...v0.9.0
|
|
363
370
|
[0.8.3]: https://github.com/itsthedevman/everythingrb/compare/v0.8.2...v0.8.3
|
data/lib/everythingrb/version.rb
CHANGED
data/lib/railtie.rb
CHANGED
|
@@ -20,18 +20,16 @@ module Everythingrb
|
|
|
20
20
|
config.everythingrb = ActiveSupport::OrderedOptions.new
|
|
21
21
|
config.everythingrb.extensions = nil # Default to loading all
|
|
22
22
|
|
|
23
|
-
initializer "everythingrb.initialize" do
|
|
24
|
-
|
|
25
|
-
require_relative "everythingrb/prelude"
|
|
23
|
+
initializer "everythingrb.initialize", after: :load_config_initializers, before: :eager_load! do
|
|
24
|
+
require_relative "everythingrb/prelude"
|
|
26
25
|
|
|
27
|
-
|
|
26
|
+
extensions = Rails.configuration.everythingrb.extensions
|
|
28
27
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
end
|
|
28
|
+
if extensions.is_a?(Array)
|
|
29
|
+
# Allow selective loading
|
|
30
|
+
extensions.each { |ext| require_relative "everythingrb/#{ext}" }
|
|
31
|
+
else
|
|
32
|
+
require_relative "everythingrb/all"
|
|
35
33
|
end
|
|
36
34
|
end
|
|
37
35
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: everythingrb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bryan
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-04-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ostruct
|