eac_ruby_utils 0.131.3 → 0.131.4
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/lib/eac_ruby_utils/gems_registry/gem.rb +9 -4
- data/lib/eac_ruby_utils/version.rb +1 -1
- metadata +10 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 34322a7e80982a7d58aa34aa48e21b17783562a7007ab3332e6fb6469c31e36d
|
|
4
|
+
data.tar.gz: 9226959905f8bc8c5658f39993345f03646b8fac358abcb5ea3abb0681372dd8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d3d8c5378e54f782e489203cd9ecb35fcd04b5104112a83f4f212f8c8ff9f76880f1cbe2808f3d09a22027e23653fe213e49c89dc4eb564e4558627bc989b954
|
|
7
|
+
data.tar.gz: decf76533cc573a4a89092b46f9392c49559a533b7fe4a3e127015a9d5a94bc4763c32c01d181fd131098586201dbb3e0afe57b2a03908044c41e198f44ce22e
|
|
@@ -35,10 +35,15 @@ module EacRubyUtils
|
|
|
35
35
|
|
|
36
36
|
# @return [Module, nil]
|
|
37
37
|
def registered_module
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
38
|
+
begin
|
|
39
|
+
require path_to_require
|
|
40
|
+
rescue ::LoadError # rubocop:disable Lint/SuppressedException
|
|
41
|
+
end
|
|
42
|
+
begin
|
|
43
|
+
direct_path_to_require.camelize.constantize
|
|
44
|
+
rescue ::LoadError, ::NameError
|
|
45
|
+
nil
|
|
46
|
+
end
|
|
42
47
|
end
|
|
43
48
|
end
|
|
44
49
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: eac_ruby_utils
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.131.
|
|
4
|
+
version: 0.131.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Esquilo Azul Company
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-07-
|
|
11
|
+
date: 2026-07-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -113,6 +113,9 @@ dependencies:
|
|
|
113
113
|
- - "~>"
|
|
114
114
|
- !ruby/object:Gem::Version
|
|
115
115
|
version: '0.7'
|
|
116
|
+
- - ">="
|
|
117
|
+
- !ruby/object:Gem::Version
|
|
118
|
+
version: 0.7.1
|
|
116
119
|
type: :development
|
|
117
120
|
prerelease: false
|
|
118
121
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -120,20 +123,23 @@ dependencies:
|
|
|
120
123
|
- - "~>"
|
|
121
124
|
- !ruby/object:Gem::Version
|
|
122
125
|
version: '0.7'
|
|
126
|
+
- - ">="
|
|
127
|
+
- !ruby/object:Gem::Version
|
|
128
|
+
version: 0.7.1
|
|
123
129
|
- !ruby/object:Gem::Dependency
|
|
124
130
|
name: eac_ruby_gem_support
|
|
125
131
|
requirement: !ruby/object:Gem::Requirement
|
|
126
132
|
requirements:
|
|
127
133
|
- - "~>"
|
|
128
134
|
- !ruby/object:Gem::Version
|
|
129
|
-
version: '0.
|
|
135
|
+
version: '0.14'
|
|
130
136
|
type: :development
|
|
131
137
|
prerelease: false
|
|
132
138
|
version_requirements: !ruby/object:Gem::Requirement
|
|
133
139
|
requirements:
|
|
134
140
|
- - "~>"
|
|
135
141
|
- !ruby/object:Gem::Version
|
|
136
|
-
version: '0.
|
|
142
|
+
version: '0.14'
|
|
137
143
|
description:
|
|
138
144
|
email:
|
|
139
145
|
executables: []
|