aether_observatory 1.1.0 → 1.2.0
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/Appraisals +10 -10
- data/Gemfile +0 -2
- data/Gemfile.lock +54 -56
- data/aether_observatory.gemspec +3 -3
- data/docs/CHANGELOG.md +10 -0
- data/gemfiles/rails_7_1.gemfile +0 -2
- data/gemfiles/rails_7_1.gemfile.lock +42 -43
- data/gemfiles/rails_7_2.gemfile +0 -2
- data/gemfiles/rails_7_2.gemfile.lock +42 -43
- data/gemfiles/{rails_6_0.gemfile → rails_8_0.gemfile} +2 -2
- data/gemfiles/{rails_7_0.gemfile.lock → rails_8_0.gemfile.lock} +63 -52
- data/gemfiles/{rails_7_0.gemfile → rails_8_1.gemfile} +2 -4
- data/gemfiles/{rails_6_1.gemfile.lock → rails_8_1.gemfile.lock} +56 -43
- data/lib/aether_observatory/version.rb +1 -1
- metadata +11 -13
- data/gemfiles/rails_6_0.gemfile.lock +0 -152
- data/gemfiles/rails_6_1.gemfile +0 -13
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 88ec271d6828a147aac4b9059ea781043ec17822a8e9b04304077bbbb9bf5c7a
|
|
4
|
+
data.tar.gz: 1b0eb2fcfe161de0923350d3b64a155913d8a7a74b4a0608c497b47cedfdb06b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 26359159b4a4711e75e4a17c62e0af2866d5bb3c349caedbcc4646eda6f99f2d80971cdcfecae986a86cb6668a8528c565cd4592ca39a854cce2aff6e19b48e2
|
|
7
|
+
data.tar.gz: 4ee8b230ff5d846bf6d1a2750efe986a7b94fbdc4648abf4eeddab63791f1ec71748c3337b16d5d0302b01ac7d4b2c224374e51ea7f3b7a42d9358cd46c8ef24
|
data/Appraisals
CHANGED
|
@@ -1,15 +1,5 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
appraise "rails-6-1" do
|
|
4
|
-
gem "activemodel", "~> 6.1.7.10"
|
|
5
|
-
gem "activesupport", "~> 6.1.7.10"
|
|
6
|
-
end
|
|
7
|
-
|
|
8
|
-
appraise "rails-7-0" do
|
|
9
|
-
gem "activemodel", "~> 7.0.8.7"
|
|
10
|
-
gem "activesupport", "~> 7.0.8.7"
|
|
11
|
-
end
|
|
12
|
-
|
|
13
3
|
appraise "rails-7-1" do
|
|
14
4
|
gem "activemodel", "~> 7.1.5.2"
|
|
15
5
|
gem "activesupport", "~> 7.1.5.2"
|
|
@@ -19,3 +9,13 @@ appraise "rails-7-2" do
|
|
|
19
9
|
gem "activemodel", "~> 7.2.2.2"
|
|
20
10
|
gem "activesupport", "~> 7.2.2.2"
|
|
21
11
|
end
|
|
12
|
+
|
|
13
|
+
appraise "rails-8-0" do
|
|
14
|
+
gem "activemodel", "~> 8.0.5"
|
|
15
|
+
gem "activesupport", "~> 8.0.5"
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
appraise "rails-8-1" do
|
|
19
|
+
gem "activemodel", "~> 8.1.3"
|
|
20
|
+
gem "activesupport", "~> 8.1.3"
|
|
21
|
+
end
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ../rubocop-powerhome
|
|
3
3
|
specs:
|
|
4
|
-
rubocop-powerhome (0.
|
|
4
|
+
rubocop-powerhome (0.7.0)
|
|
5
5
|
rubocop (= 1.82.1)
|
|
6
6
|
rubocop-performance
|
|
7
7
|
rubocop-rails
|
|
@@ -11,23 +11,23 @@ PATH
|
|
|
11
11
|
PATH
|
|
12
12
|
remote: .
|
|
13
13
|
specs:
|
|
14
|
-
aether_observatory (1.
|
|
15
|
-
activemodel (>=
|
|
16
|
-
activesupport (>=
|
|
14
|
+
aether_observatory (1.2.0)
|
|
15
|
+
activemodel (>= 7.1)
|
|
16
|
+
activesupport (>= 7.1)
|
|
17
17
|
|
|
18
18
|
GEM
|
|
19
19
|
remote: https://rubygems.org/
|
|
20
20
|
specs:
|
|
21
|
-
activemodel (8.
|
|
22
|
-
activesupport (= 8.
|
|
23
|
-
activesupport (8.
|
|
21
|
+
activemodel (8.1.3)
|
|
22
|
+
activesupport (= 8.1.3)
|
|
23
|
+
activesupport (8.1.3)
|
|
24
24
|
base64
|
|
25
|
-
benchmark (>= 0.3)
|
|
26
25
|
bigdecimal
|
|
27
26
|
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
28
27
|
connection_pool (>= 2.2.5)
|
|
29
28
|
drb
|
|
30
29
|
i18n (>= 1.6, < 2)
|
|
30
|
+
json
|
|
31
31
|
logger (>= 1.4.2)
|
|
32
32
|
minitest (>= 5.1)
|
|
33
33
|
securerandom (>= 0.3)
|
|
@@ -37,22 +37,21 @@ GEM
|
|
|
37
37
|
bundler
|
|
38
38
|
rake
|
|
39
39
|
thor (>= 0.14.0)
|
|
40
|
-
ast (2.4.
|
|
41
|
-
base64 (0.
|
|
42
|
-
|
|
43
|
-
bigdecimal (3.1.9)
|
|
40
|
+
ast (2.4.3)
|
|
41
|
+
base64 (0.3.0)
|
|
42
|
+
bigdecimal (4.1.1)
|
|
44
43
|
byebug (11.1.3)
|
|
45
44
|
coderay (1.1.3)
|
|
46
|
-
concurrent-ruby (1.3.
|
|
47
|
-
connection_pool (
|
|
48
|
-
csv (3.3.
|
|
49
|
-
diff-lcs (1.6.
|
|
45
|
+
concurrent-ruby (1.3.6)
|
|
46
|
+
connection_pool (3.0.2)
|
|
47
|
+
csv (3.3.5)
|
|
48
|
+
diff-lcs (1.6.2)
|
|
50
49
|
docile (1.1.5)
|
|
51
|
-
drb (2.2.
|
|
52
|
-
i18n (1.14.
|
|
50
|
+
drb (2.2.3)
|
|
51
|
+
i18n (1.14.8)
|
|
53
52
|
concurrent-ruby (~> 1.0)
|
|
54
|
-
json (2.
|
|
55
|
-
language_server-protocol (3.17.0.
|
|
53
|
+
json (2.19.3)
|
|
54
|
+
language_server-protocol (3.17.0.5)
|
|
56
55
|
license_finder (7.2.1)
|
|
57
56
|
bundler
|
|
58
57
|
csv (~> 3.2)
|
|
@@ -62,14 +61,16 @@ GEM
|
|
|
62
61
|
with_env (= 1.1.0)
|
|
63
62
|
xml-simple (~> 1.1.9)
|
|
64
63
|
lint_roller (1.1.0)
|
|
65
|
-
logger (1.
|
|
64
|
+
logger (1.7.0)
|
|
66
65
|
method_source (1.1.0)
|
|
67
|
-
minitest (
|
|
68
|
-
|
|
69
|
-
|
|
66
|
+
minitest (6.0.3)
|
|
67
|
+
drb (~> 2.0)
|
|
68
|
+
prism (~> 1.5)
|
|
69
|
+
parallel (1.28.0)
|
|
70
|
+
parser (3.3.11.1)
|
|
70
71
|
ast (~> 2.4.1)
|
|
71
72
|
racc
|
|
72
|
-
prism (1.
|
|
73
|
+
prism (1.9.0)
|
|
73
74
|
pry (0.14.2)
|
|
74
75
|
coderay (~> 1.1)
|
|
75
76
|
method_source (~> 1.0)
|
|
@@ -77,24 +78,24 @@ GEM
|
|
|
77
78
|
byebug (~> 11.0)
|
|
78
79
|
pry (>= 0.13, < 0.15)
|
|
79
80
|
racc (1.8.1)
|
|
80
|
-
rack (3.
|
|
81
|
+
rack (3.2.6)
|
|
81
82
|
rainbow (3.1.1)
|
|
82
|
-
rake (13.
|
|
83
|
-
regexp_parser (2.
|
|
84
|
-
rexml (3.4.
|
|
85
|
-
rspec (3.13.
|
|
83
|
+
rake (13.3.1)
|
|
84
|
+
regexp_parser (2.12.0)
|
|
85
|
+
rexml (3.4.4)
|
|
86
|
+
rspec (3.13.2)
|
|
86
87
|
rspec-core (~> 3.13.0)
|
|
87
88
|
rspec-expectations (~> 3.13.0)
|
|
88
89
|
rspec-mocks (~> 3.13.0)
|
|
89
|
-
rspec-core (3.13.
|
|
90
|
+
rspec-core (3.13.6)
|
|
90
91
|
rspec-support (~> 3.13.0)
|
|
91
|
-
rspec-expectations (3.13.
|
|
92
|
+
rspec-expectations (3.13.5)
|
|
92
93
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
93
94
|
rspec-support (~> 3.13.0)
|
|
94
|
-
rspec-mocks (3.13.
|
|
95
|
+
rspec-mocks (3.13.8)
|
|
95
96
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
96
97
|
rspec-support (~> 3.13.0)
|
|
97
|
-
rspec-support (3.13.
|
|
98
|
+
rspec-support (3.13.7)
|
|
98
99
|
rubocop (1.82.1)
|
|
99
100
|
json (~> 2.3)
|
|
100
101
|
language_server-protocol (~> 3.17.0.2)
|
|
@@ -106,46 +107,45 @@ GEM
|
|
|
106
107
|
rubocop-ast (>= 1.48.0, < 2.0)
|
|
107
108
|
ruby-progressbar (~> 1.7)
|
|
108
109
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
109
|
-
rubocop-ast (1.
|
|
110
|
+
rubocop-ast (1.49.1)
|
|
110
111
|
parser (>= 3.3.7.2)
|
|
111
|
-
prism (~> 1.
|
|
112
|
-
rubocop-performance (1.
|
|
112
|
+
prism (~> 1.7)
|
|
113
|
+
rubocop-performance (1.26.1)
|
|
113
114
|
lint_roller (~> 1.1)
|
|
114
|
-
rubocop (>= 1.
|
|
115
|
-
rubocop-ast (>= 1.
|
|
116
|
-
rubocop-rails (2.
|
|
115
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
116
|
+
rubocop-ast (>= 1.47.1, < 2.0)
|
|
117
|
+
rubocop-rails (2.34.3)
|
|
117
118
|
activesupport (>= 4.2.0)
|
|
118
119
|
lint_roller (~> 1.1)
|
|
119
120
|
rack (>= 1.1)
|
|
120
|
-
rubocop (>= 1.
|
|
121
|
-
rubocop-ast (>= 1.
|
|
121
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
122
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
|
122
123
|
rubocop-rake (0.7.1)
|
|
123
124
|
lint_roller (~> 1.1)
|
|
124
125
|
rubocop (>= 1.72.1)
|
|
125
|
-
rubocop-rspec (3.
|
|
126
|
+
rubocop-rspec (3.9.0)
|
|
126
127
|
lint_roller (~> 1.1)
|
|
127
|
-
rubocop (~> 1.
|
|
128
|
+
rubocop (~> 1.81)
|
|
128
129
|
ruby-progressbar (1.13.0)
|
|
129
130
|
rubyzip (2.4.1)
|
|
130
|
-
securerandom (0.
|
|
131
|
+
securerandom (0.4.1)
|
|
131
132
|
simplecov (0.15.1)
|
|
132
133
|
docile (~> 1.1.0)
|
|
133
134
|
json (>= 1.8, < 3)
|
|
134
135
|
simplecov-html (~> 0.10.0)
|
|
135
136
|
simplecov-html (0.10.2)
|
|
136
|
-
thor (1.
|
|
137
|
-
tomlrb (2.0.
|
|
137
|
+
thor (1.5.0)
|
|
138
|
+
tomlrb (2.0.4)
|
|
138
139
|
tzinfo (2.0.6)
|
|
139
140
|
concurrent-ruby (~> 1.0)
|
|
140
|
-
unicode-display_width (3.
|
|
141
|
-
unicode-emoji (~> 4.
|
|
142
|
-
unicode-emoji (4.0
|
|
143
|
-
uri (1.
|
|
141
|
+
unicode-display_width (3.2.0)
|
|
142
|
+
unicode-emoji (~> 4.1)
|
|
143
|
+
unicode-emoji (4.2.0)
|
|
144
|
+
uri (1.1.1)
|
|
144
145
|
with_env (1.1.0)
|
|
145
146
|
xml-simple (1.1.9)
|
|
146
147
|
rexml
|
|
147
|
-
yard (0.9.
|
|
148
|
-
zeitwerk (2.6.18)
|
|
148
|
+
yard (0.9.38)
|
|
149
149
|
|
|
150
150
|
PLATFORMS
|
|
151
151
|
arm64-darwin-24
|
|
@@ -161,10 +161,8 @@ DEPENDENCIES
|
|
|
161
161
|
rake (~> 13.0)
|
|
162
162
|
rspec (~> 3.0)
|
|
163
163
|
rubocop-powerhome!
|
|
164
|
-
securerandom (< 0.4.0)
|
|
165
164
|
simplecov (= 0.15.1)
|
|
166
|
-
yard (= 0.9.
|
|
167
|
-
zeitwerk (< 2.7)
|
|
165
|
+
yard (= 0.9.38)
|
|
168
166
|
|
|
169
167
|
BUNDLED WITH
|
|
170
168
|
2.5.23
|
data/aether_observatory.gemspec
CHANGED
|
@@ -28,8 +28,8 @@ Gem::Specification.new do |spec|
|
|
|
28
28
|
end
|
|
29
29
|
spec.require_paths = ["lib"]
|
|
30
30
|
|
|
31
|
-
spec.add_dependency "activemodel", ">=
|
|
32
|
-
spec.add_dependency "activesupport", ">=
|
|
31
|
+
spec.add_dependency "activemodel", ">= 7.1"
|
|
32
|
+
spec.add_dependency "activesupport", ">= 7.1"
|
|
33
33
|
|
|
34
34
|
spec.add_development_dependency "appraisal", "~> 2.5.0"
|
|
35
35
|
spec.add_development_dependency "bundler", "~> 2.1"
|
|
@@ -39,5 +39,5 @@ Gem::Specification.new do |spec|
|
|
|
39
39
|
spec.add_development_dependency "rake", "~> 13.0"
|
|
40
40
|
spec.add_development_dependency "rspec", "~> 3.0"
|
|
41
41
|
spec.add_development_dependency "simplecov", "0.15.1"
|
|
42
|
-
spec.add_development_dependency "yard", "0.9.
|
|
42
|
+
spec.add_development_dependency "yard", "0.9.38"
|
|
43
43
|
end
|
data/docs/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## [Unreleased]
|
|
2
|
+
|
|
3
|
+
## [1.2.0] - 2026-07-28
|
|
4
|
+
|
|
5
|
+
[HFH-4410 - Bump powertools for Rails 8.1.3 V2](https://github.com/powerhome/power-tools/pull/426)
|
|
6
|
+
|
|
7
|
+
- Upgrade Rails to 8.1.3 for Nitro and Runway compatability
|
|
8
|
+
- Drop support for Ruby < 3.3 and Rails < 7.1 [#396](https://github.com/powerhome/power-tools/pull/396)
|
|
9
|
+
- Update yard to 0.9.38 to address [Cross-site Scripting vulnerability](https://github.com/powerhome/power-tools/security/dependabot/544) [#394](https://github.com/powerhome/power-tools/pull/394)
|
|
10
|
+
|
|
1
11
|
## [1.1.0] - 2026-03-23
|
|
2
12
|
|
|
3
13
|
- Standardize all libs to support ruby 3.0, ruby 3.3 x rails 6.1 through rails 7.2 [#359](https://github.com/powerhome/power-tools/pull/359)
|
data/gemfiles/rails_7_1.gemfile
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ../../rubocop-powerhome
|
|
3
3
|
specs:
|
|
4
|
-
rubocop-powerhome (0.
|
|
4
|
+
rubocop-powerhome (0.7.0)
|
|
5
5
|
rubocop (= 1.82.1)
|
|
6
6
|
rubocop-performance
|
|
7
7
|
rubocop-rails
|
|
@@ -11,9 +11,9 @@ PATH
|
|
|
11
11
|
PATH
|
|
12
12
|
remote: ..
|
|
13
13
|
specs:
|
|
14
|
-
aether_observatory (1.
|
|
15
|
-
activemodel (>=
|
|
16
|
-
activesupport (>=
|
|
14
|
+
aether_observatory (1.2.0)
|
|
15
|
+
activemodel (>= 7.1)
|
|
16
|
+
activesupport (>= 7.1)
|
|
17
17
|
|
|
18
18
|
GEM
|
|
19
19
|
remote: https://rubygems.org/
|
|
@@ -39,19 +39,19 @@ GEM
|
|
|
39
39
|
thor (>= 0.14.0)
|
|
40
40
|
ast (2.4.3)
|
|
41
41
|
base64 (0.3.0)
|
|
42
|
-
benchmark (0.
|
|
43
|
-
bigdecimal (
|
|
42
|
+
benchmark (0.5.0)
|
|
43
|
+
bigdecimal (4.1.2)
|
|
44
44
|
byebug (11.1.3)
|
|
45
45
|
coderay (1.1.3)
|
|
46
|
-
concurrent-ruby (1.3.
|
|
47
|
-
connection_pool (
|
|
46
|
+
concurrent-ruby (1.3.6)
|
|
47
|
+
connection_pool (3.0.2)
|
|
48
48
|
csv (3.3.5)
|
|
49
49
|
diff-lcs (1.6.2)
|
|
50
50
|
docile (1.1.5)
|
|
51
51
|
drb (2.2.3)
|
|
52
|
-
i18n (1.14.
|
|
52
|
+
i18n (1.14.8)
|
|
53
53
|
concurrent-ruby (~> 1.0)
|
|
54
|
-
json (2.
|
|
54
|
+
json (2.19.3)
|
|
55
55
|
language_server-protocol (3.17.0.5)
|
|
56
56
|
license_finder (7.2.1)
|
|
57
57
|
bundler
|
|
@@ -64,13 +64,15 @@ GEM
|
|
|
64
64
|
lint_roller (1.1.0)
|
|
65
65
|
logger (1.7.0)
|
|
66
66
|
method_source (1.1.0)
|
|
67
|
-
minitest (
|
|
67
|
+
minitest (6.0.6)
|
|
68
|
+
drb (~> 2.0)
|
|
69
|
+
prism (~> 1.5)
|
|
68
70
|
mutex_m (0.3.0)
|
|
69
|
-
parallel (1.
|
|
70
|
-
parser (3.3.
|
|
71
|
+
parallel (1.28.0)
|
|
72
|
+
parser (3.3.11.1)
|
|
71
73
|
ast (~> 2.4.1)
|
|
72
74
|
racc
|
|
73
|
-
prism (1.
|
|
75
|
+
prism (1.9.0)
|
|
74
76
|
pry (0.14.2)
|
|
75
77
|
coderay (~> 1.1)
|
|
76
78
|
method_source (~> 1.0)
|
|
@@ -78,24 +80,24 @@ GEM
|
|
|
78
80
|
byebug (~> 11.0)
|
|
79
81
|
pry (>= 0.13, < 0.15)
|
|
80
82
|
racc (1.8.1)
|
|
81
|
-
rack (3.2.
|
|
83
|
+
rack (3.2.6)
|
|
82
84
|
rainbow (3.1.1)
|
|
83
|
-
rake (13.3.
|
|
84
|
-
regexp_parser (2.
|
|
85
|
-
rexml (3.4.
|
|
86
|
-
rspec (3.13.
|
|
85
|
+
rake (13.3.1)
|
|
86
|
+
regexp_parser (2.12.0)
|
|
87
|
+
rexml (3.4.4)
|
|
88
|
+
rspec (3.13.2)
|
|
87
89
|
rspec-core (~> 3.13.0)
|
|
88
90
|
rspec-expectations (~> 3.13.0)
|
|
89
91
|
rspec-mocks (~> 3.13.0)
|
|
90
|
-
rspec-core (3.13.
|
|
92
|
+
rspec-core (3.13.6)
|
|
91
93
|
rspec-support (~> 3.13.0)
|
|
92
94
|
rspec-expectations (3.13.5)
|
|
93
95
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
94
96
|
rspec-support (~> 3.13.0)
|
|
95
|
-
rspec-mocks (3.13.
|
|
97
|
+
rspec-mocks (3.13.8)
|
|
96
98
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
97
99
|
rspec-support (~> 3.13.0)
|
|
98
|
-
rspec-support (3.13.
|
|
100
|
+
rspec-support (3.13.7)
|
|
99
101
|
rubocop (1.82.1)
|
|
100
102
|
json (~> 2.3)
|
|
101
103
|
language_server-protocol (~> 3.17.0.2)
|
|
@@ -107,45 +109,44 @@ GEM
|
|
|
107
109
|
rubocop-ast (>= 1.48.0, < 2.0)
|
|
108
110
|
ruby-progressbar (~> 1.7)
|
|
109
111
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
110
|
-
rubocop-ast (1.
|
|
112
|
+
rubocop-ast (1.49.1)
|
|
111
113
|
parser (>= 3.3.7.2)
|
|
112
|
-
prism (~> 1.
|
|
113
|
-
rubocop-performance (1.
|
|
114
|
+
prism (~> 1.7)
|
|
115
|
+
rubocop-performance (1.26.1)
|
|
114
116
|
lint_roller (~> 1.1)
|
|
115
|
-
rubocop (>= 1.
|
|
116
|
-
rubocop-ast (>= 1.
|
|
117
|
-
rubocop-rails (2.
|
|
117
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
118
|
+
rubocop-ast (>= 1.47.1, < 2.0)
|
|
119
|
+
rubocop-rails (2.34.3)
|
|
118
120
|
activesupport (>= 4.2.0)
|
|
119
121
|
lint_roller (~> 1.1)
|
|
120
122
|
rack (>= 1.1)
|
|
121
|
-
rubocop (>= 1.
|
|
122
|
-
rubocop-ast (>= 1.
|
|
123
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
124
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
|
123
125
|
rubocop-rake (0.7.1)
|
|
124
126
|
lint_roller (~> 1.1)
|
|
125
127
|
rubocop (>= 1.72.1)
|
|
126
|
-
rubocop-rspec (3.
|
|
128
|
+
rubocop-rspec (3.9.0)
|
|
127
129
|
lint_roller (~> 1.1)
|
|
128
|
-
rubocop (~> 1.
|
|
130
|
+
rubocop (~> 1.81)
|
|
129
131
|
ruby-progressbar (1.13.0)
|
|
130
132
|
rubyzip (2.4.1)
|
|
131
|
-
securerandom (0.
|
|
133
|
+
securerandom (0.4.1)
|
|
132
134
|
simplecov (0.15.1)
|
|
133
135
|
docile (~> 1.1.0)
|
|
134
136
|
json (>= 1.8, < 3)
|
|
135
137
|
simplecov-html (~> 0.10.0)
|
|
136
138
|
simplecov-html (0.10.2)
|
|
137
|
-
thor (1.
|
|
138
|
-
tomlrb (2.0.
|
|
139
|
+
thor (1.5.0)
|
|
140
|
+
tomlrb (2.0.4)
|
|
139
141
|
tzinfo (2.0.6)
|
|
140
142
|
concurrent-ruby (~> 1.0)
|
|
141
|
-
unicode-display_width (3.
|
|
142
|
-
unicode-emoji (~> 4.
|
|
143
|
-
unicode-emoji (4.0
|
|
143
|
+
unicode-display_width (3.2.0)
|
|
144
|
+
unicode-emoji (~> 4.1)
|
|
145
|
+
unicode-emoji (4.2.0)
|
|
144
146
|
with_env (1.1.0)
|
|
145
147
|
xml-simple (1.1.9)
|
|
146
148
|
rexml
|
|
147
|
-
yard (0.9.
|
|
148
|
-
zeitwerk (2.6.18)
|
|
149
|
+
yard (0.9.38)
|
|
149
150
|
|
|
150
151
|
PLATFORMS
|
|
151
152
|
aarch64-linux
|
|
@@ -167,10 +168,8 @@ DEPENDENCIES
|
|
|
167
168
|
rake (~> 13.0)
|
|
168
169
|
rspec (~> 3.0)
|
|
169
170
|
rubocop-powerhome!
|
|
170
|
-
securerandom (< 0.4.0)
|
|
171
171
|
simplecov (= 0.15.1)
|
|
172
|
-
yard (= 0.9.
|
|
173
|
-
zeitwerk (< 2.7)
|
|
172
|
+
yard (= 0.9.38)
|
|
174
173
|
|
|
175
174
|
BUNDLED WITH
|
|
176
175
|
2.5.23
|
data/gemfiles/rails_7_2.gemfile
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ../../rubocop-powerhome
|
|
3
3
|
specs:
|
|
4
|
-
rubocop-powerhome (0.
|
|
4
|
+
rubocop-powerhome (0.7.0)
|
|
5
5
|
rubocop (= 1.82.1)
|
|
6
6
|
rubocop-performance
|
|
7
7
|
rubocop-rails
|
|
@@ -11,9 +11,9 @@ PATH
|
|
|
11
11
|
PATH
|
|
12
12
|
remote: ..
|
|
13
13
|
specs:
|
|
14
|
-
aether_observatory (1.
|
|
15
|
-
activemodel (>=
|
|
16
|
-
activesupport (>=
|
|
14
|
+
aether_observatory (1.2.0)
|
|
15
|
+
activemodel (>= 7.1)
|
|
16
|
+
activesupport (>= 7.1)
|
|
17
17
|
|
|
18
18
|
GEM
|
|
19
19
|
remote: https://rubygems.org/
|
|
@@ -38,19 +38,19 @@ GEM
|
|
|
38
38
|
thor (>= 0.14.0)
|
|
39
39
|
ast (2.4.3)
|
|
40
40
|
base64 (0.3.0)
|
|
41
|
-
benchmark (0.
|
|
42
|
-
bigdecimal (
|
|
41
|
+
benchmark (0.5.0)
|
|
42
|
+
bigdecimal (4.1.2)
|
|
43
43
|
byebug (11.1.3)
|
|
44
44
|
coderay (1.1.3)
|
|
45
|
-
concurrent-ruby (1.3.
|
|
46
|
-
connection_pool (
|
|
45
|
+
concurrent-ruby (1.3.6)
|
|
46
|
+
connection_pool (3.0.2)
|
|
47
47
|
csv (3.3.5)
|
|
48
48
|
diff-lcs (1.6.2)
|
|
49
49
|
docile (1.1.5)
|
|
50
50
|
drb (2.2.3)
|
|
51
|
-
i18n (1.14.
|
|
51
|
+
i18n (1.14.8)
|
|
52
52
|
concurrent-ruby (~> 1.0)
|
|
53
|
-
json (2.
|
|
53
|
+
json (2.19.3)
|
|
54
54
|
language_server-protocol (3.17.0.5)
|
|
55
55
|
license_finder (7.2.1)
|
|
56
56
|
bundler
|
|
@@ -63,12 +63,14 @@ GEM
|
|
|
63
63
|
lint_roller (1.1.0)
|
|
64
64
|
logger (1.7.0)
|
|
65
65
|
method_source (1.1.0)
|
|
66
|
-
minitest (
|
|
67
|
-
|
|
68
|
-
|
|
66
|
+
minitest (6.0.6)
|
|
67
|
+
drb (~> 2.0)
|
|
68
|
+
prism (~> 1.5)
|
|
69
|
+
parallel (1.28.0)
|
|
70
|
+
parser (3.3.11.1)
|
|
69
71
|
ast (~> 2.4.1)
|
|
70
72
|
racc
|
|
71
|
-
prism (1.
|
|
73
|
+
prism (1.9.0)
|
|
72
74
|
pry (0.14.2)
|
|
73
75
|
coderay (~> 1.1)
|
|
74
76
|
method_source (~> 1.0)
|
|
@@ -76,24 +78,24 @@ GEM
|
|
|
76
78
|
byebug (~> 11.0)
|
|
77
79
|
pry (>= 0.13, < 0.15)
|
|
78
80
|
racc (1.8.1)
|
|
79
|
-
rack (3.2.
|
|
81
|
+
rack (3.2.6)
|
|
80
82
|
rainbow (3.1.1)
|
|
81
|
-
rake (13.3.
|
|
82
|
-
regexp_parser (2.
|
|
83
|
-
rexml (3.4.
|
|
84
|
-
rspec (3.13.
|
|
83
|
+
rake (13.3.1)
|
|
84
|
+
regexp_parser (2.12.0)
|
|
85
|
+
rexml (3.4.4)
|
|
86
|
+
rspec (3.13.2)
|
|
85
87
|
rspec-core (~> 3.13.0)
|
|
86
88
|
rspec-expectations (~> 3.13.0)
|
|
87
89
|
rspec-mocks (~> 3.13.0)
|
|
88
|
-
rspec-core (3.13.
|
|
90
|
+
rspec-core (3.13.6)
|
|
89
91
|
rspec-support (~> 3.13.0)
|
|
90
92
|
rspec-expectations (3.13.5)
|
|
91
93
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
92
94
|
rspec-support (~> 3.13.0)
|
|
93
|
-
rspec-mocks (3.13.
|
|
95
|
+
rspec-mocks (3.13.8)
|
|
94
96
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
95
97
|
rspec-support (~> 3.13.0)
|
|
96
|
-
rspec-support (3.13.
|
|
98
|
+
rspec-support (3.13.7)
|
|
97
99
|
rubocop (1.82.1)
|
|
98
100
|
json (~> 2.3)
|
|
99
101
|
language_server-protocol (~> 3.17.0.2)
|
|
@@ -105,45 +107,44 @@ GEM
|
|
|
105
107
|
rubocop-ast (>= 1.48.0, < 2.0)
|
|
106
108
|
ruby-progressbar (~> 1.7)
|
|
107
109
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
108
|
-
rubocop-ast (1.
|
|
110
|
+
rubocop-ast (1.49.1)
|
|
109
111
|
parser (>= 3.3.7.2)
|
|
110
|
-
prism (~> 1.
|
|
111
|
-
rubocop-performance (1.
|
|
112
|
+
prism (~> 1.7)
|
|
113
|
+
rubocop-performance (1.26.1)
|
|
112
114
|
lint_roller (~> 1.1)
|
|
113
|
-
rubocop (>= 1.
|
|
114
|
-
rubocop-ast (>= 1.
|
|
115
|
-
rubocop-rails (2.
|
|
115
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
116
|
+
rubocop-ast (>= 1.47.1, < 2.0)
|
|
117
|
+
rubocop-rails (2.34.3)
|
|
116
118
|
activesupport (>= 4.2.0)
|
|
117
119
|
lint_roller (~> 1.1)
|
|
118
120
|
rack (>= 1.1)
|
|
119
|
-
rubocop (>= 1.
|
|
120
|
-
rubocop-ast (>= 1.
|
|
121
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
122
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
|
121
123
|
rubocop-rake (0.7.1)
|
|
122
124
|
lint_roller (~> 1.1)
|
|
123
125
|
rubocop (>= 1.72.1)
|
|
124
|
-
rubocop-rspec (3.
|
|
126
|
+
rubocop-rspec (3.9.0)
|
|
125
127
|
lint_roller (~> 1.1)
|
|
126
|
-
rubocop (~> 1.
|
|
128
|
+
rubocop (~> 1.81)
|
|
127
129
|
ruby-progressbar (1.13.0)
|
|
128
130
|
rubyzip (2.4.1)
|
|
129
|
-
securerandom (0.
|
|
131
|
+
securerandom (0.4.1)
|
|
130
132
|
simplecov (0.15.1)
|
|
131
133
|
docile (~> 1.1.0)
|
|
132
134
|
json (>= 1.8, < 3)
|
|
133
135
|
simplecov-html (~> 0.10.0)
|
|
134
136
|
simplecov-html (0.10.2)
|
|
135
|
-
thor (1.
|
|
136
|
-
tomlrb (2.0.
|
|
137
|
+
thor (1.5.0)
|
|
138
|
+
tomlrb (2.0.4)
|
|
137
139
|
tzinfo (2.0.6)
|
|
138
140
|
concurrent-ruby (~> 1.0)
|
|
139
|
-
unicode-display_width (3.
|
|
140
|
-
unicode-emoji (~> 4.
|
|
141
|
-
unicode-emoji (4.0
|
|
141
|
+
unicode-display_width (3.2.0)
|
|
142
|
+
unicode-emoji (~> 4.1)
|
|
143
|
+
unicode-emoji (4.2.0)
|
|
142
144
|
with_env (1.1.0)
|
|
143
145
|
xml-simple (1.1.9)
|
|
144
146
|
rexml
|
|
145
|
-
yard (0.9.
|
|
146
|
-
zeitwerk (2.6.18)
|
|
147
|
+
yard (0.9.38)
|
|
147
148
|
|
|
148
149
|
PLATFORMS
|
|
149
150
|
arm64-darwin-24
|
|
@@ -161,10 +162,8 @@ DEPENDENCIES
|
|
|
161
162
|
rake (~> 13.0)
|
|
162
163
|
rspec (~> 3.0)
|
|
163
164
|
rubocop-powerhome!
|
|
164
|
-
securerandom (< 0.4.0)
|
|
165
165
|
simplecov (= 0.15.1)
|
|
166
|
-
yard (= 0.9.
|
|
167
|
-
zeitwerk (< 2.7)
|
|
166
|
+
yard (= 0.9.38)
|
|
168
167
|
|
|
169
168
|
BUNDLED WITH
|
|
170
169
|
2.5.23
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ../../rubocop-powerhome
|
|
3
3
|
specs:
|
|
4
|
-
rubocop-powerhome (0.
|
|
4
|
+
rubocop-powerhome (0.7.0)
|
|
5
5
|
rubocop (= 1.82.1)
|
|
6
6
|
rubocop-performance
|
|
7
7
|
rubocop-rails
|
|
@@ -11,34 +11,47 @@ PATH
|
|
|
11
11
|
PATH
|
|
12
12
|
remote: ..
|
|
13
13
|
specs:
|
|
14
|
-
aether_observatory (1.
|
|
15
|
-
activemodel (>=
|
|
16
|
-
activesupport (>=
|
|
14
|
+
aether_observatory (1.2.0)
|
|
15
|
+
activemodel (>= 7.1)
|
|
16
|
+
activesupport (>= 7.1)
|
|
17
17
|
|
|
18
18
|
GEM
|
|
19
19
|
remote: https://rubygems.org/
|
|
20
20
|
specs:
|
|
21
|
-
activemodel (
|
|
22
|
-
activesupport (=
|
|
23
|
-
activesupport (
|
|
24
|
-
|
|
21
|
+
activemodel (8.0.5)
|
|
22
|
+
activesupport (= 8.0.5)
|
|
23
|
+
activesupport (8.0.5)
|
|
24
|
+
base64
|
|
25
|
+
benchmark (>= 0.3)
|
|
26
|
+
bigdecimal
|
|
27
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
28
|
+
connection_pool (>= 2.2.5)
|
|
29
|
+
drb
|
|
25
30
|
i18n (>= 1.6, < 2)
|
|
31
|
+
logger (>= 1.4.2)
|
|
26
32
|
minitest (>= 5.1)
|
|
27
|
-
|
|
33
|
+
securerandom (>= 0.3)
|
|
34
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
35
|
+
uri (>= 0.13.1)
|
|
28
36
|
appraisal (2.5.0)
|
|
29
37
|
bundler
|
|
30
38
|
rake
|
|
31
39
|
thor (>= 0.14.0)
|
|
32
40
|
ast (2.4.3)
|
|
41
|
+
base64 (0.3.0)
|
|
42
|
+
benchmark (0.5.0)
|
|
43
|
+
bigdecimal (4.1.2)
|
|
33
44
|
byebug (11.1.3)
|
|
34
45
|
coderay (1.1.3)
|
|
35
|
-
concurrent-ruby (1.3.
|
|
46
|
+
concurrent-ruby (1.3.6)
|
|
47
|
+
connection_pool (3.0.2)
|
|
36
48
|
csv (3.3.5)
|
|
37
49
|
diff-lcs (1.6.2)
|
|
38
50
|
docile (1.1.5)
|
|
39
|
-
|
|
51
|
+
drb (2.2.3)
|
|
52
|
+
i18n (1.14.8)
|
|
40
53
|
concurrent-ruby (~> 1.0)
|
|
41
|
-
json (2.
|
|
54
|
+
json (2.19.5)
|
|
42
55
|
language_server-protocol (3.17.0.5)
|
|
43
56
|
license_finder (7.2.1)
|
|
44
57
|
bundler
|
|
@@ -49,13 +62,16 @@ GEM
|
|
|
49
62
|
with_env (= 1.1.0)
|
|
50
63
|
xml-simple (~> 1.1.9)
|
|
51
64
|
lint_roller (1.1.0)
|
|
65
|
+
logger (1.7.0)
|
|
52
66
|
method_source (1.1.0)
|
|
53
|
-
minitest (
|
|
54
|
-
|
|
55
|
-
|
|
67
|
+
minitest (6.0.6)
|
|
68
|
+
drb (~> 2.0)
|
|
69
|
+
prism (~> 1.5)
|
|
70
|
+
parallel (1.28.0)
|
|
71
|
+
parser (3.3.11.1)
|
|
56
72
|
ast (~> 2.4.1)
|
|
57
73
|
racc
|
|
58
|
-
prism (1.
|
|
74
|
+
prism (1.9.0)
|
|
59
75
|
pry (0.14.2)
|
|
60
76
|
coderay (~> 1.1)
|
|
61
77
|
method_source (~> 1.0)
|
|
@@ -63,24 +79,24 @@ GEM
|
|
|
63
79
|
byebug (~> 11.0)
|
|
64
80
|
pry (>= 0.13, < 0.15)
|
|
65
81
|
racc (1.8.1)
|
|
66
|
-
rack (3.2.
|
|
82
|
+
rack (3.2.6)
|
|
67
83
|
rainbow (3.1.1)
|
|
68
|
-
rake (13.
|
|
69
|
-
regexp_parser (2.
|
|
70
|
-
rexml (3.4.
|
|
71
|
-
rspec (3.13.
|
|
84
|
+
rake (13.4.2)
|
|
85
|
+
regexp_parser (2.12.0)
|
|
86
|
+
rexml (3.4.4)
|
|
87
|
+
rspec (3.13.2)
|
|
72
88
|
rspec-core (~> 3.13.0)
|
|
73
89
|
rspec-expectations (~> 3.13.0)
|
|
74
90
|
rspec-mocks (~> 3.13.0)
|
|
75
|
-
rspec-core (3.13.
|
|
91
|
+
rspec-core (3.13.6)
|
|
76
92
|
rspec-support (~> 3.13.0)
|
|
77
93
|
rspec-expectations (3.13.5)
|
|
78
94
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
79
95
|
rspec-support (~> 3.13.0)
|
|
80
|
-
rspec-mocks (3.13.
|
|
96
|
+
rspec-mocks (3.13.8)
|
|
81
97
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
82
98
|
rspec-support (~> 3.13.0)
|
|
83
|
-
rspec-support (3.13.
|
|
99
|
+
rspec-support (3.13.7)
|
|
84
100
|
rubocop (1.82.1)
|
|
85
101
|
json (~> 2.3)
|
|
86
102
|
language_server-protocol (~> 3.17.0.2)
|
|
@@ -92,57 +108,54 @@ GEM
|
|
|
92
108
|
rubocop-ast (>= 1.48.0, < 2.0)
|
|
93
109
|
ruby-progressbar (~> 1.7)
|
|
94
110
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
95
|
-
rubocop-ast (1.
|
|
111
|
+
rubocop-ast (1.49.1)
|
|
96
112
|
parser (>= 3.3.7.2)
|
|
97
|
-
prism (~> 1.
|
|
98
|
-
rubocop-performance (1.
|
|
113
|
+
prism (~> 1.7)
|
|
114
|
+
rubocop-performance (1.26.1)
|
|
99
115
|
lint_roller (~> 1.1)
|
|
100
|
-
rubocop (>= 1.
|
|
101
|
-
rubocop-ast (>= 1.
|
|
102
|
-
rubocop-rails (2.
|
|
116
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
117
|
+
rubocop-ast (>= 1.47.1, < 2.0)
|
|
118
|
+
rubocop-rails (2.35.0)
|
|
103
119
|
activesupport (>= 4.2.0)
|
|
104
120
|
lint_roller (~> 1.1)
|
|
105
121
|
rack (>= 1.1)
|
|
106
|
-
rubocop (>= 1.
|
|
107
|
-
rubocop-ast (>= 1.
|
|
122
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
123
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
|
108
124
|
rubocop-rake (0.7.1)
|
|
109
125
|
lint_roller (~> 1.1)
|
|
110
126
|
rubocop (>= 1.72.1)
|
|
111
|
-
rubocop-rspec (3.
|
|
127
|
+
rubocop-rspec (3.9.0)
|
|
112
128
|
lint_roller (~> 1.1)
|
|
113
|
-
rubocop (~> 1.
|
|
129
|
+
rubocop (~> 1.81)
|
|
114
130
|
ruby-progressbar (1.13.0)
|
|
115
131
|
rubyzip (2.4.1)
|
|
116
|
-
securerandom (0.
|
|
132
|
+
securerandom (0.4.1)
|
|
117
133
|
simplecov (0.15.1)
|
|
118
134
|
docile (~> 1.1.0)
|
|
119
135
|
json (>= 1.8, < 3)
|
|
120
136
|
simplecov-html (~> 0.10.0)
|
|
121
137
|
simplecov-html (0.10.2)
|
|
122
|
-
thor (1.
|
|
123
|
-
tomlrb (2.0.
|
|
138
|
+
thor (1.5.0)
|
|
139
|
+
tomlrb (2.0.4)
|
|
124
140
|
tzinfo (2.0.6)
|
|
125
141
|
concurrent-ruby (~> 1.0)
|
|
126
|
-
unicode-display_width (3.
|
|
127
|
-
unicode-emoji (~> 4.
|
|
128
|
-
unicode-emoji (4.0
|
|
142
|
+
unicode-display_width (3.2.0)
|
|
143
|
+
unicode-emoji (~> 4.1)
|
|
144
|
+
unicode-emoji (4.2.0)
|
|
145
|
+
uri (1.1.1)
|
|
129
146
|
with_env (1.1.0)
|
|
130
147
|
xml-simple (1.1.9)
|
|
131
148
|
rexml
|
|
132
|
-
yard (0.9.
|
|
133
|
-
zeitwerk (2.6.18)
|
|
149
|
+
yard (0.9.38)
|
|
134
150
|
|
|
135
151
|
PLATFORMS
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
arm64-darwin
|
|
139
|
-
x86-linux
|
|
140
|
-
x86_64-darwin
|
|
152
|
+
arm64-darwin-24
|
|
153
|
+
ruby
|
|
141
154
|
x86_64-linux
|
|
142
155
|
|
|
143
156
|
DEPENDENCIES
|
|
144
|
-
activemodel (~>
|
|
145
|
-
activesupport (~>
|
|
157
|
+
activemodel (~> 8.0.5)
|
|
158
|
+
activesupport (~> 8.0.5)
|
|
146
159
|
aether_observatory!
|
|
147
160
|
appraisal (~> 2.5.0)
|
|
148
161
|
bundler (~> 2.1)
|
|
@@ -152,10 +165,8 @@ DEPENDENCIES
|
|
|
152
165
|
rake (~> 13.0)
|
|
153
166
|
rspec (~> 3.0)
|
|
154
167
|
rubocop-powerhome!
|
|
155
|
-
securerandom (< 0.4.0)
|
|
156
168
|
simplecov (= 0.15.1)
|
|
157
|
-
yard (= 0.9.
|
|
158
|
-
zeitwerk (< 2.7)
|
|
169
|
+
yard (= 0.9.38)
|
|
159
170
|
|
|
160
171
|
BUNDLED WITH
|
|
161
172
|
2.5.23
|
|
@@ -4,10 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
source "https://rubygems.org"
|
|
6
6
|
|
|
7
|
-
gem "activemodel", "~>
|
|
8
|
-
gem "activesupport", "~>
|
|
7
|
+
gem "activemodel", "~> 8.1.3"
|
|
8
|
+
gem "activesupport", "~> 8.1.3"
|
|
9
9
|
gem "rubocop-powerhome", path: "../../rubocop-powerhome"
|
|
10
|
-
gem "securerandom", "< 0.4.0"
|
|
11
|
-
gem "zeitwerk", "< 2.7"
|
|
12
10
|
|
|
13
11
|
gemspec path: "../"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ../../rubocop-powerhome
|
|
3
3
|
specs:
|
|
4
|
-
rubocop-powerhome (0.
|
|
4
|
+
rubocop-powerhome (0.7.0)
|
|
5
5
|
rubocop (= 1.82.1)
|
|
6
6
|
rubocop-performance
|
|
7
7
|
rubocop-rails
|
|
@@ -11,35 +11,46 @@ PATH
|
|
|
11
11
|
PATH
|
|
12
12
|
remote: ..
|
|
13
13
|
specs:
|
|
14
|
-
aether_observatory (1.
|
|
15
|
-
activemodel (>=
|
|
16
|
-
activesupport (>=
|
|
14
|
+
aether_observatory (1.2.0)
|
|
15
|
+
activemodel (>= 7.1)
|
|
16
|
+
activesupport (>= 7.1)
|
|
17
17
|
|
|
18
18
|
GEM
|
|
19
19
|
remote: https://rubygems.org/
|
|
20
20
|
specs:
|
|
21
|
-
activemodel (
|
|
22
|
-
activesupport (=
|
|
23
|
-
activesupport (
|
|
24
|
-
|
|
21
|
+
activemodel (8.1.3)
|
|
22
|
+
activesupport (= 8.1.3)
|
|
23
|
+
activesupport (8.1.3)
|
|
24
|
+
base64
|
|
25
|
+
bigdecimal
|
|
26
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
27
|
+
connection_pool (>= 2.2.5)
|
|
28
|
+
drb
|
|
25
29
|
i18n (>= 1.6, < 2)
|
|
30
|
+
json
|
|
31
|
+
logger (>= 1.4.2)
|
|
26
32
|
minitest (>= 5.1)
|
|
27
|
-
|
|
28
|
-
|
|
33
|
+
securerandom (>= 0.3)
|
|
34
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
35
|
+
uri (>= 0.13.1)
|
|
29
36
|
appraisal (2.5.0)
|
|
30
37
|
bundler
|
|
31
38
|
rake
|
|
32
39
|
thor (>= 0.14.0)
|
|
33
40
|
ast (2.4.3)
|
|
41
|
+
base64 (0.3.0)
|
|
42
|
+
bigdecimal (4.1.2)
|
|
34
43
|
byebug (11.1.3)
|
|
35
44
|
coderay (1.1.3)
|
|
36
|
-
concurrent-ruby (1.3.
|
|
45
|
+
concurrent-ruby (1.3.6)
|
|
46
|
+
connection_pool (3.0.2)
|
|
37
47
|
csv (3.3.5)
|
|
38
48
|
diff-lcs (1.6.2)
|
|
39
49
|
docile (1.1.5)
|
|
40
|
-
|
|
50
|
+
drb (2.2.3)
|
|
51
|
+
i18n (1.14.8)
|
|
41
52
|
concurrent-ruby (~> 1.0)
|
|
42
|
-
json (2.
|
|
53
|
+
json (2.19.5)
|
|
43
54
|
language_server-protocol (3.17.0.5)
|
|
44
55
|
license_finder (7.2.1)
|
|
45
56
|
bundler
|
|
@@ -50,13 +61,16 @@ GEM
|
|
|
50
61
|
with_env (= 1.1.0)
|
|
51
62
|
xml-simple (~> 1.1.9)
|
|
52
63
|
lint_roller (1.1.0)
|
|
64
|
+
logger (1.7.0)
|
|
53
65
|
method_source (1.1.0)
|
|
54
|
-
minitest (
|
|
55
|
-
|
|
56
|
-
|
|
66
|
+
minitest (6.0.6)
|
|
67
|
+
drb (~> 2.0)
|
|
68
|
+
prism (~> 1.5)
|
|
69
|
+
parallel (1.28.0)
|
|
70
|
+
parser (3.3.11.1)
|
|
57
71
|
ast (~> 2.4.1)
|
|
58
72
|
racc
|
|
59
|
-
prism (1.
|
|
73
|
+
prism (1.9.0)
|
|
60
74
|
pry (0.14.2)
|
|
61
75
|
coderay (~> 1.1)
|
|
62
76
|
method_source (~> 1.0)
|
|
@@ -64,24 +78,24 @@ GEM
|
|
|
64
78
|
byebug (~> 11.0)
|
|
65
79
|
pry (>= 0.13, < 0.15)
|
|
66
80
|
racc (1.8.1)
|
|
67
|
-
rack (3.2.
|
|
81
|
+
rack (3.2.6)
|
|
68
82
|
rainbow (3.1.1)
|
|
69
|
-
rake (13.
|
|
70
|
-
regexp_parser (2.
|
|
71
|
-
rexml (3.4.
|
|
72
|
-
rspec (3.13.
|
|
83
|
+
rake (13.4.2)
|
|
84
|
+
regexp_parser (2.12.0)
|
|
85
|
+
rexml (3.4.4)
|
|
86
|
+
rspec (3.13.2)
|
|
73
87
|
rspec-core (~> 3.13.0)
|
|
74
88
|
rspec-expectations (~> 3.13.0)
|
|
75
89
|
rspec-mocks (~> 3.13.0)
|
|
76
|
-
rspec-core (3.13.
|
|
90
|
+
rspec-core (3.13.6)
|
|
77
91
|
rspec-support (~> 3.13.0)
|
|
78
92
|
rspec-expectations (3.13.5)
|
|
79
93
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
80
94
|
rspec-support (~> 3.13.0)
|
|
81
|
-
rspec-mocks (3.13.
|
|
95
|
+
rspec-mocks (3.13.8)
|
|
82
96
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
83
97
|
rspec-support (~> 3.13.0)
|
|
84
|
-
rspec-support (3.13.
|
|
98
|
+
rspec-support (3.13.7)
|
|
85
99
|
rubocop (1.82.1)
|
|
86
100
|
json (~> 2.3)
|
|
87
101
|
language_server-protocol (~> 3.17.0.2)
|
|
@@ -93,14 +107,14 @@ GEM
|
|
|
93
107
|
rubocop-ast (>= 1.48.0, < 2.0)
|
|
94
108
|
ruby-progressbar (~> 1.7)
|
|
95
109
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
96
|
-
rubocop-ast (1.
|
|
110
|
+
rubocop-ast (1.49.1)
|
|
97
111
|
parser (>= 3.3.7.2)
|
|
98
|
-
prism (~> 1.
|
|
99
|
-
rubocop-performance (1.26.
|
|
112
|
+
prism (~> 1.7)
|
|
113
|
+
rubocop-performance (1.26.1)
|
|
100
114
|
lint_roller (~> 1.1)
|
|
101
115
|
rubocop (>= 1.75.0, < 2.0)
|
|
102
|
-
rubocop-ast (>= 1.
|
|
103
|
-
rubocop-rails (2.
|
|
116
|
+
rubocop-ast (>= 1.47.1, < 2.0)
|
|
117
|
+
rubocop-rails (2.35.0)
|
|
104
118
|
activesupport (>= 4.2.0)
|
|
105
119
|
lint_roller (~> 1.1)
|
|
106
120
|
rack (>= 1.1)
|
|
@@ -109,37 +123,38 @@ GEM
|
|
|
109
123
|
rubocop-rake (0.7.1)
|
|
110
124
|
lint_roller (~> 1.1)
|
|
111
125
|
rubocop (>= 1.72.1)
|
|
112
|
-
rubocop-rspec (3.
|
|
126
|
+
rubocop-rspec (3.9.0)
|
|
113
127
|
lint_roller (~> 1.1)
|
|
114
|
-
rubocop (~> 1.
|
|
128
|
+
rubocop (~> 1.81)
|
|
115
129
|
ruby-progressbar (1.13.0)
|
|
116
130
|
rubyzip (2.4.1)
|
|
117
|
-
securerandom (0.
|
|
131
|
+
securerandom (0.4.1)
|
|
118
132
|
simplecov (0.15.1)
|
|
119
133
|
docile (~> 1.1.0)
|
|
120
134
|
json (>= 1.8, < 3)
|
|
121
135
|
simplecov-html (~> 0.10.0)
|
|
122
136
|
simplecov-html (0.10.2)
|
|
123
|
-
thor (1.
|
|
124
|
-
tomlrb (2.0.
|
|
137
|
+
thor (1.5.0)
|
|
138
|
+
tomlrb (2.0.4)
|
|
125
139
|
tzinfo (2.0.6)
|
|
126
140
|
concurrent-ruby (~> 1.0)
|
|
127
141
|
unicode-display_width (3.2.0)
|
|
128
142
|
unicode-emoji (~> 4.1)
|
|
129
|
-
unicode-emoji (4.
|
|
143
|
+
unicode-emoji (4.2.0)
|
|
144
|
+
uri (1.1.1)
|
|
130
145
|
with_env (1.1.0)
|
|
131
146
|
xml-simple (1.1.9)
|
|
132
147
|
rexml
|
|
133
|
-
yard (0.9.
|
|
134
|
-
zeitwerk (2.6.18)
|
|
148
|
+
yard (0.9.38)
|
|
135
149
|
|
|
136
150
|
PLATFORMS
|
|
137
151
|
arm64-darwin-24
|
|
138
152
|
ruby
|
|
153
|
+
x86_64-linux
|
|
139
154
|
|
|
140
155
|
DEPENDENCIES
|
|
141
|
-
activemodel (~>
|
|
142
|
-
activesupport (~>
|
|
156
|
+
activemodel (~> 8.1.3)
|
|
157
|
+
activesupport (~> 8.1.3)
|
|
143
158
|
aether_observatory!
|
|
144
159
|
appraisal (~> 2.5.0)
|
|
145
160
|
bundler (~> 2.1)
|
|
@@ -149,10 +164,8 @@ DEPENDENCIES
|
|
|
149
164
|
rake (~> 13.0)
|
|
150
165
|
rspec (~> 3.0)
|
|
151
166
|
rubocop-powerhome!
|
|
152
|
-
securerandom (< 0.4.0)
|
|
153
167
|
simplecov (= 0.15.1)
|
|
154
|
-
yard (= 0.9.
|
|
155
|
-
zeitwerk (< 2.7)
|
|
168
|
+
yard (= 0.9.38)
|
|
156
169
|
|
|
157
170
|
BUNDLED WITH
|
|
158
171
|
2.5.23
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aether_observatory
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Terry Finn
|
|
@@ -16,28 +16,28 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
19
|
+
version: '7.1'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
26
|
+
version: '7.1'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: activesupport
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
33
|
+
version: '7.1'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '
|
|
40
|
+
version: '7.1'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: appraisal
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -156,14 +156,14 @@ dependencies:
|
|
|
156
156
|
requirements:
|
|
157
157
|
- - '='
|
|
158
158
|
- !ruby/object:Gem::Version
|
|
159
|
-
version: 0.9.
|
|
159
|
+
version: 0.9.38
|
|
160
160
|
type: :development
|
|
161
161
|
prerelease: false
|
|
162
162
|
version_requirements: !ruby/object:Gem::Requirement
|
|
163
163
|
requirements:
|
|
164
164
|
- - '='
|
|
165
165
|
- !ruby/object:Gem::Version
|
|
166
|
-
version: 0.9.
|
|
166
|
+
version: 0.9.38
|
|
167
167
|
description: Aether Observatory provides an event broadcast system.
|
|
168
168
|
email:
|
|
169
169
|
- terry.finn@powerhrg.com
|
|
@@ -183,16 +183,14 @@ files:
|
|
|
183
183
|
- docs/CHANGELOG.md
|
|
184
184
|
- docs/README.md
|
|
185
185
|
- gemfiles/.bundle/config
|
|
186
|
-
- gemfiles/rails_6_0.gemfile
|
|
187
|
-
- gemfiles/rails_6_0.gemfile.lock
|
|
188
|
-
- gemfiles/rails_6_1.gemfile
|
|
189
|
-
- gemfiles/rails_6_1.gemfile.lock
|
|
190
|
-
- gemfiles/rails_7_0.gemfile
|
|
191
|
-
- gemfiles/rails_7_0.gemfile.lock
|
|
192
186
|
- gemfiles/rails_7_1.gemfile
|
|
193
187
|
- gemfiles/rails_7_1.gemfile.lock
|
|
194
188
|
- gemfiles/rails_7_2.gemfile
|
|
195
189
|
- gemfiles/rails_7_2.gemfile.lock
|
|
190
|
+
- gemfiles/rails_8_0.gemfile
|
|
191
|
+
- gemfiles/rails_8_0.gemfile.lock
|
|
192
|
+
- gemfiles/rails_8_1.gemfile
|
|
193
|
+
- gemfiles/rails_8_1.gemfile.lock
|
|
196
194
|
- lib/aether_observatory.rb
|
|
197
195
|
- lib/aether_observatory/README.md
|
|
198
196
|
- lib/aether_observatory/backend/memory.rb
|
|
@@ -1,152 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: ../../rubocop-powerhome
|
|
3
|
-
specs:
|
|
4
|
-
rubocop-powerhome (0.5.5)
|
|
5
|
-
rubocop (= 1.74.0)
|
|
6
|
-
rubocop-performance
|
|
7
|
-
rubocop-rails
|
|
8
|
-
rubocop-rake
|
|
9
|
-
rubocop-rspec
|
|
10
|
-
|
|
11
|
-
PATH
|
|
12
|
-
remote: ..
|
|
13
|
-
specs:
|
|
14
|
-
aether_observatory (1.0.1)
|
|
15
|
-
activemodel (>= 6.0.6.1)
|
|
16
|
-
activesupport (>= 6.0.6.1)
|
|
17
|
-
|
|
18
|
-
GEM
|
|
19
|
-
remote: https://rubygems.org/
|
|
20
|
-
specs:
|
|
21
|
-
activemodel (6.0.6.1)
|
|
22
|
-
activesupport (= 6.0.6.1)
|
|
23
|
-
activesupport (6.0.6.1)
|
|
24
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
25
|
-
i18n (>= 0.7, < 2)
|
|
26
|
-
minitest (~> 5.1)
|
|
27
|
-
tzinfo (~> 1.1)
|
|
28
|
-
zeitwerk (~> 2.2, >= 2.2.2)
|
|
29
|
-
appraisal (2.5.0)
|
|
30
|
-
bundler
|
|
31
|
-
rake
|
|
32
|
-
thor (>= 0.14.0)
|
|
33
|
-
ast (2.4.2)
|
|
34
|
-
byebug (11.1.3)
|
|
35
|
-
coderay (1.1.3)
|
|
36
|
-
concurrent-ruby (1.3.4)
|
|
37
|
-
csv (3.3.1)
|
|
38
|
-
diff-lcs (1.5.1)
|
|
39
|
-
docile (1.1.5)
|
|
40
|
-
i18n (1.14.6)
|
|
41
|
-
concurrent-ruby (~> 1.0)
|
|
42
|
-
json (2.9.0)
|
|
43
|
-
language_server-protocol (3.17.0.3)
|
|
44
|
-
license_finder (7.2.1)
|
|
45
|
-
bundler
|
|
46
|
-
csv (~> 3.2)
|
|
47
|
-
rubyzip (>= 1, < 3)
|
|
48
|
-
thor (~> 1.2)
|
|
49
|
-
tomlrb (>= 1.3, < 2.1)
|
|
50
|
-
with_env (= 1.1.0)
|
|
51
|
-
xml-simple (~> 1.1.9)
|
|
52
|
-
lint_roller (1.1.0)
|
|
53
|
-
method_source (1.1.0)
|
|
54
|
-
minitest (5.25.4)
|
|
55
|
-
parallel (1.26.3)
|
|
56
|
-
parser (3.3.6.0)
|
|
57
|
-
ast (~> 2.4.1)
|
|
58
|
-
racc
|
|
59
|
-
pry (0.14.2)
|
|
60
|
-
coderay (~> 1.1)
|
|
61
|
-
method_source (~> 1.0)
|
|
62
|
-
pry-byebug (3.10.1)
|
|
63
|
-
byebug (~> 11.0)
|
|
64
|
-
pry (>= 0.13, < 0.15)
|
|
65
|
-
racc (1.8.1)
|
|
66
|
-
rack (2.2.10)
|
|
67
|
-
rainbow (3.1.1)
|
|
68
|
-
rake (13.2.1)
|
|
69
|
-
regexp_parser (2.9.3)
|
|
70
|
-
rexml (3.4.0)
|
|
71
|
-
rspec (3.13.0)
|
|
72
|
-
rspec-core (~> 3.13.0)
|
|
73
|
-
rspec-expectations (~> 3.13.0)
|
|
74
|
-
rspec-mocks (~> 3.13.0)
|
|
75
|
-
rspec-core (3.13.2)
|
|
76
|
-
rspec-support (~> 3.13.0)
|
|
77
|
-
rspec-expectations (3.13.3)
|
|
78
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
79
|
-
rspec-support (~> 3.13.0)
|
|
80
|
-
rspec-mocks (3.13.2)
|
|
81
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
82
|
-
rspec-support (~> 3.13.0)
|
|
83
|
-
rspec-support (3.13.2)
|
|
84
|
-
rubocop (1.74.0)
|
|
85
|
-
json (~> 2.3)
|
|
86
|
-
language_server-protocol (~> 3.17.0.2)
|
|
87
|
-
lint_roller (~> 1.1.0)
|
|
88
|
-
parallel (~> 1.10)
|
|
89
|
-
parser (>= 3.3.0.2)
|
|
90
|
-
rainbow (>= 2.2.2, < 4.0)
|
|
91
|
-
regexp_parser (>= 2.9.3, < 3.0)
|
|
92
|
-
rubocop-ast (>= 1.38.0, < 2.0)
|
|
93
|
-
ruby-progressbar (~> 1.7)
|
|
94
|
-
unicode-display_width (>= 2.4.0, < 4.0)
|
|
95
|
-
rubocop-ast (1.39.0)
|
|
96
|
-
parser (>= 3.3.1.0)
|
|
97
|
-
rubocop-performance (1.23.0)
|
|
98
|
-
rubocop (>= 1.48.1, < 2.0)
|
|
99
|
-
rubocop-ast (>= 1.31.1, < 2.0)
|
|
100
|
-
rubocop-rails (2.27.0)
|
|
101
|
-
activesupport (>= 4.2.0)
|
|
102
|
-
rack (>= 1.1)
|
|
103
|
-
rubocop (>= 1.52.0, < 2.0)
|
|
104
|
-
rubocop-ast (>= 1.31.1, < 2.0)
|
|
105
|
-
rubocop-rake (0.6.0)
|
|
106
|
-
rubocop (~> 1.0)
|
|
107
|
-
rubocop-rspec (3.3.0)
|
|
108
|
-
rubocop (~> 1.61)
|
|
109
|
-
ruby-progressbar (1.13.0)
|
|
110
|
-
rubyzip (2.3.2)
|
|
111
|
-
simplecov (0.15.1)
|
|
112
|
-
docile (~> 1.1.0)
|
|
113
|
-
json (>= 1.8, < 3)
|
|
114
|
-
simplecov-html (~> 0.10.0)
|
|
115
|
-
simplecov-html (0.10.2)
|
|
116
|
-
thor (1.3.2)
|
|
117
|
-
thread_safe (0.3.6)
|
|
118
|
-
tomlrb (2.0.3)
|
|
119
|
-
tzinfo (1.2.11)
|
|
120
|
-
thread_safe (~> 0.1)
|
|
121
|
-
unicode-display_width (2.6.0)
|
|
122
|
-
with_env (1.1.0)
|
|
123
|
-
xml-simple (1.1.9)
|
|
124
|
-
rexml
|
|
125
|
-
yard (0.9.21)
|
|
126
|
-
zeitwerk (2.6.18)
|
|
127
|
-
|
|
128
|
-
PLATFORMS
|
|
129
|
-
aarch64-linux
|
|
130
|
-
arm-linux
|
|
131
|
-
arm64-darwin
|
|
132
|
-
x86-linux
|
|
133
|
-
x86_64-darwin
|
|
134
|
-
x86_64-linux
|
|
135
|
-
|
|
136
|
-
DEPENDENCIES
|
|
137
|
-
activemodel (~> 6.0.6)
|
|
138
|
-
activesupport (~> 6.0.6)
|
|
139
|
-
aether_observatory!
|
|
140
|
-
appraisal (~> 2.5.0)
|
|
141
|
-
bundler (~> 2.1)
|
|
142
|
-
license_finder (~> 7.0)
|
|
143
|
-
pry (>= 0.14)
|
|
144
|
-
pry-byebug (= 3.10.1)
|
|
145
|
-
rake (~> 13.0)
|
|
146
|
-
rspec (~> 3.0)
|
|
147
|
-
rubocop-powerhome!
|
|
148
|
-
simplecov (= 0.15.1)
|
|
149
|
-
yard (= 0.9.21)
|
|
150
|
-
|
|
151
|
-
BUNDLED WITH
|
|
152
|
-
2.4.22
|
data/gemfiles/rails_6_1.gemfile
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
# This file was generated by Appraisal
|
|
4
|
-
|
|
5
|
-
source "https://rubygems.org"
|
|
6
|
-
|
|
7
|
-
gem "activemodel", "~> 6.1.7.10"
|
|
8
|
-
gem "activesupport", "~> 6.1.7.10"
|
|
9
|
-
gem "rubocop-powerhome", path: "../../rubocop-powerhome"
|
|
10
|
-
gem "securerandom", "< 0.4.0"
|
|
11
|
-
gem "zeitwerk", "< 2.7"
|
|
12
|
-
|
|
13
|
-
gemspec path: "../"
|