a-nti_manner_kick_course 0.1.0 → 0.1.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/lib/a/nti_manner_kick_course/version.rb +1 -1
- data/lib/a/nti_manner_kick_course.rb +3 -3
- metadata +3 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d08b3a51f738d909292f04fa0fdc86e56cf2e2e4802a22d06dbe4512c229fdad
|
|
4
|
+
data.tar.gz: aeefe9cf2619e4b00bcab635e69902263feaacdc5900bd6e763d35b03d28b337
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b6f23e8127b19944e0cc200d37af175c9a80b76740b2e43131d865e8f909103319ad553961dce8c1d4d7c7f7ede583258ca4d655a2addec45bc6f2287ca1741d
|
|
7
|
+
data.tar.gz: bd545ffff6b455c2ca57af20fd51fdd3363f55eb8a20290cfd643fd6e2127c63b9ec129239ca5ec68b52058397a5e02d606d69e737fb2ad56f3e3d18c14c1c56
|
|
@@ -33,7 +33,7 @@ module A
|
|
|
33
33
|
A::NtiMannerKickCourse.already_checked
|
|
34
34
|
message = if A::NtiMannerKickCourse.debug?
|
|
35
35
|
<<~"MESSAGE"
|
|
36
|
-
During Rails startup, the block inside ActiveSupport.on_load(
|
|
36
|
+
During Rails startup, the block inside ActiveSupport.on_load(:#{framework}) was executed.
|
|
37
37
|
There is code that is not being deferred as expected.
|
|
38
38
|
|
|
39
39
|
Currently, debug mode is enabled, so the full stack trace is being displayed.
|
|
@@ -44,7 +44,7 @@ module A
|
|
|
44
44
|
else
|
|
45
45
|
suspect = caller.find { |c| !A::NtiMannerKickCourse.filtering.match?(c) }
|
|
46
46
|
<<~"MESSAGE"
|
|
47
|
-
During Rails startup, the block inside ActiveSupport.on_load(
|
|
47
|
+
During Rails startup, the block inside ActiveSupport.on_load(:#{framework}) was executed.
|
|
48
48
|
There is code that is not being deferred as expected. The suspicious part is here.
|
|
49
49
|
|
|
50
50
|
#{suspect}
|
|
@@ -69,7 +69,7 @@ module A
|
|
|
69
69
|
|
|
70
70
|
# TODO: We need to make this list more comprehensive.
|
|
71
71
|
def filtering
|
|
72
|
-
%r{<internal:|/bundled_gems.rb|/(activesupport|actionpack|activerecord|bootsnap|bundler|zeitwerk)-[0-9a-z\.]+/}
|
|
72
|
+
%r{<internal:|/bundled_gems.rb|/(a-nti_manner_kick_course|activesupport|actionpack|activerecord|bootsnap|bundler|zeitwerk)-[0-9a-z\.]+/}
|
|
73
73
|
end
|
|
74
74
|
|
|
75
75
|
def already_checked?
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: a-nti_manner_kick_course
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shinichi Maeshima
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date: 2025-01-
|
|
10
|
+
date: 2025-01-17 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: rails
|
|
@@ -46,7 +45,6 @@ metadata:
|
|
|
46
45
|
homepage_uri: https://github.com/willnet/a-nti_manner_kick_course
|
|
47
46
|
source_code_uri: https://github.com/willnet/a-nti_manner_kick_course
|
|
48
47
|
changelog_uri: https://github.com/willnet/a-nti_manner_kick_course/releases
|
|
49
|
-
post_install_message:
|
|
50
48
|
rdoc_options: []
|
|
51
49
|
require_paths:
|
|
52
50
|
- lib
|
|
@@ -61,8 +59,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
61
59
|
- !ruby/object:Gem::Version
|
|
62
60
|
version: '0'
|
|
63
61
|
requirements: []
|
|
64
|
-
rubygems_version: 3.
|
|
65
|
-
signing_key:
|
|
62
|
+
rubygems_version: 3.6.2
|
|
66
63
|
specification_version: 4
|
|
67
64
|
summary: This library detects code or gems that violate lazy loading conventions during
|
|
68
65
|
Rails initialization.
|