aether_observatory 1.0.0 → 1.1.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/.rubocop.yml +14 -0
- data/.rubocop_todo.yml +31 -0
- data/Appraisals +11 -11
- data/Gemfile +2 -0
- data/Gemfile.lock +170 -0
- data/aether_observatory.gemspec +3 -4
- data/docs/CHANGELOG.md +11 -1
- data/docs/README.md +15 -7
- data/gemfiles/.bundle/config +2 -0
- data/gemfiles/rails_6_0.gemfile.lock +11 -9
- data/gemfiles/rails_6_1.gemfile +4 -2
- data/gemfiles/rails_6_1.gemfile.lock +62 -53
- data/gemfiles/rails_7_0.gemfile +4 -2
- data/gemfiles/rails_7_0.gemfile.lock +61 -47
- data/gemfiles/rails_7_1.gemfile +4 -2
- data/gemfiles/rails_7_1.gemfile.lock +69 -56
- data/gemfiles/rails_7_2.gemfile +13 -0
- data/gemfiles/rails_7_2.gemfile.lock +170 -0
- data/lib/aether_observatory/backend/memory.rb +30 -0
- data/lib/aether_observatory/backend/notifications.rb +25 -0
- data/lib/aether_observatory/configuration.rb +1 -3
- data/lib/aether_observatory/event_base.rb +11 -9
- data/lib/aether_observatory/observer_base.rb +5 -5
- data/lib/aether_observatory/railtie.rb +15 -0
- data/lib/aether_observatory/rspec/event_helper.rb +49 -0
- data/lib/aether_observatory/rspec.rb +3 -0
- data/lib/aether_observatory/version.rb +1 -1
- data/lib/aether_observatory.rb +2 -0
- metadata +17 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a6aef2a047f2c9e6d6c2afc9bfd24bbdf2bf0935c911ff586749f0655ebc041f
|
|
4
|
+
data.tar.gz: db6cd7b04e16f5815529807c4ea183e7b2524e4c97b14abf266a4df58227f46e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 41948b356d5073d1646f638a689c1391bab25b3ac0f3c9cd2a5b1fa30956fe87e115e11d6b2bc046d3f3de0cf0d104e5f741b77e286db93891cbb115af9cbcab
|
|
7
|
+
data.tar.gz: 6c35061372b4005025c91472699c50a915825e7377806dcb24ac56199e99d6484f62854a5c0dad50fe4d02931856d2caf9f9c2d91d0c82a75b19aa07618ace73
|
data/.rubocop.yml
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
inherit_from: .rubocop_todo.yml
|
|
2
|
+
|
|
1
3
|
require:
|
|
2
4
|
- rubocop-powerhome
|
|
3
5
|
|
|
@@ -7,3 +9,15 @@ AllCops:
|
|
|
7
9
|
Metrics/MethodLength:
|
|
8
10
|
Exclude:
|
|
9
11
|
- spec/**/*_spec.rb
|
|
12
|
+
|
|
13
|
+
Rails/ActionFilter:
|
|
14
|
+
Enabled: false
|
|
15
|
+
|
|
16
|
+
Rails/ActionOrder:
|
|
17
|
+
Enabled: false
|
|
18
|
+
|
|
19
|
+
Rails/FilePath:
|
|
20
|
+
Enabled: false
|
|
21
|
+
|
|
22
|
+
Rails/SaveBang:
|
|
23
|
+
Enabled: false
|
data/.rubocop_todo.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# This configuration was generated by
|
|
2
|
+
# `rubocop --auto-gen-config`
|
|
3
|
+
# on 2025-03-19 14:04:23 UTC using RuboCop version 1.74.0.
|
|
4
|
+
# The point is for the user to remove these configuration records
|
|
5
|
+
# one by one as the offenses are removed from the code base.
|
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
|
8
|
+
|
|
9
|
+
# Offense count: 1
|
|
10
|
+
Rails/EnvironmentVariableAccess:
|
|
11
|
+
Exclude:
|
|
12
|
+
- 'spec/spec_helper.rb'
|
|
13
|
+
|
|
14
|
+
# Offense count: 7
|
|
15
|
+
Rails/HelperInstanceVariable:
|
|
16
|
+
Exclude:
|
|
17
|
+
- 'lib/aether_observatory/event_base.rb'
|
|
18
|
+
- 'lib/aether_observatory/observer_base.rb'
|
|
19
|
+
|
|
20
|
+
# Offense count: 1
|
|
21
|
+
# This cop supports safe autocorrection (--autocorrect).
|
|
22
|
+
Rails/Output:
|
|
23
|
+
Exclude:
|
|
24
|
+
- 'Rakefile'
|
|
25
|
+
|
|
26
|
+
# Offense count: 9
|
|
27
|
+
# This cop supports safe autocorrection (--autocorrect).
|
|
28
|
+
Rails/SaveBang:
|
|
29
|
+
Exclude:
|
|
30
|
+
- 'spec/aether_observatory/event_base_spec.rb'
|
|
31
|
+
- 'spec/aether_observatory/observer_base_spec.rb'
|
data/Appraisals
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
appraise "rails-6-0" do
|
|
4
|
-
gem "activemodel", "~> 6.0.6"
|
|
5
|
-
gem "activesupport", "~> 6.0.6"
|
|
6
|
-
end
|
|
7
|
-
|
|
8
3
|
appraise "rails-6-1" do
|
|
9
|
-
gem "activemodel", "~> 6.1.7"
|
|
10
|
-
gem "activesupport", "~> 6.1.7"
|
|
4
|
+
gem "activemodel", "~> 6.1.7.10"
|
|
5
|
+
gem "activesupport", "~> 6.1.7.10"
|
|
11
6
|
end
|
|
12
7
|
|
|
13
8
|
appraise "rails-7-0" do
|
|
14
|
-
gem "activemodel", "~> 7.0.8"
|
|
15
|
-
gem "activesupport", "~> 7.0.8"
|
|
9
|
+
gem "activemodel", "~> 7.0.8.7"
|
|
10
|
+
gem "activesupport", "~> 7.0.8.7"
|
|
16
11
|
end
|
|
17
12
|
|
|
18
13
|
appraise "rails-7-1" do
|
|
19
|
-
gem "activemodel", "~> 7.1.
|
|
20
|
-
gem "activesupport", "~> 7.1.
|
|
14
|
+
gem "activemodel", "~> 7.1.5.2"
|
|
15
|
+
gem "activesupport", "~> 7.1.5.2"
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
appraise "rails-7-2" do
|
|
19
|
+
gem "activemodel", "~> 7.2.2.2"
|
|
20
|
+
gem "activesupport", "~> 7.2.2.2"
|
|
21
21
|
end
|
data/Gemfile
CHANGED
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: ../rubocop-powerhome
|
|
3
|
+
specs:
|
|
4
|
+
rubocop-powerhome (0.6.1)
|
|
5
|
+
rubocop (= 1.82.1)
|
|
6
|
+
rubocop-performance
|
|
7
|
+
rubocop-rails
|
|
8
|
+
rubocop-rake
|
|
9
|
+
rubocop-rspec
|
|
10
|
+
|
|
11
|
+
PATH
|
|
12
|
+
remote: .
|
|
13
|
+
specs:
|
|
14
|
+
aether_observatory (1.1.0)
|
|
15
|
+
activemodel (>= 6.1)
|
|
16
|
+
activesupport (>= 6.1)
|
|
17
|
+
|
|
18
|
+
GEM
|
|
19
|
+
remote: https://rubygems.org/
|
|
20
|
+
specs:
|
|
21
|
+
activemodel (8.0.2)
|
|
22
|
+
activesupport (= 8.0.2)
|
|
23
|
+
activesupport (8.0.2)
|
|
24
|
+
base64
|
|
25
|
+
benchmark (>= 0.3)
|
|
26
|
+
bigdecimal
|
|
27
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
28
|
+
connection_pool (>= 2.2.5)
|
|
29
|
+
drb
|
|
30
|
+
i18n (>= 1.6, < 2)
|
|
31
|
+
logger (>= 1.4.2)
|
|
32
|
+
minitest (>= 5.1)
|
|
33
|
+
securerandom (>= 0.3)
|
|
34
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
35
|
+
uri (>= 0.13.1)
|
|
36
|
+
appraisal (2.5.0)
|
|
37
|
+
bundler
|
|
38
|
+
rake
|
|
39
|
+
thor (>= 0.14.0)
|
|
40
|
+
ast (2.4.2)
|
|
41
|
+
base64 (0.2.0)
|
|
42
|
+
benchmark (0.4.0)
|
|
43
|
+
bigdecimal (3.1.9)
|
|
44
|
+
byebug (11.1.3)
|
|
45
|
+
coderay (1.1.3)
|
|
46
|
+
concurrent-ruby (1.3.5)
|
|
47
|
+
connection_pool (2.5.0)
|
|
48
|
+
csv (3.3.2)
|
|
49
|
+
diff-lcs (1.6.0)
|
|
50
|
+
docile (1.1.5)
|
|
51
|
+
drb (2.2.1)
|
|
52
|
+
i18n (1.14.7)
|
|
53
|
+
concurrent-ruby (~> 1.0)
|
|
54
|
+
json (2.10.2)
|
|
55
|
+
language_server-protocol (3.17.0.4)
|
|
56
|
+
license_finder (7.2.1)
|
|
57
|
+
bundler
|
|
58
|
+
csv (~> 3.2)
|
|
59
|
+
rubyzip (>= 1, < 3)
|
|
60
|
+
thor (~> 1.2)
|
|
61
|
+
tomlrb (>= 1.3, < 2.1)
|
|
62
|
+
with_env (= 1.1.0)
|
|
63
|
+
xml-simple (~> 1.1.9)
|
|
64
|
+
lint_roller (1.1.0)
|
|
65
|
+
logger (1.6.6)
|
|
66
|
+
method_source (1.1.0)
|
|
67
|
+
minitest (5.25.5)
|
|
68
|
+
parallel (1.26.3)
|
|
69
|
+
parser (3.3.9.0)
|
|
70
|
+
ast (~> 2.4.1)
|
|
71
|
+
racc
|
|
72
|
+
prism (1.4.0)
|
|
73
|
+
pry (0.14.2)
|
|
74
|
+
coderay (~> 1.1)
|
|
75
|
+
method_source (~> 1.0)
|
|
76
|
+
pry-byebug (3.10.1)
|
|
77
|
+
byebug (~> 11.0)
|
|
78
|
+
pry (>= 0.13, < 0.15)
|
|
79
|
+
racc (1.8.1)
|
|
80
|
+
rack (3.1.12)
|
|
81
|
+
rainbow (3.1.1)
|
|
82
|
+
rake (13.2.1)
|
|
83
|
+
regexp_parser (2.10.0)
|
|
84
|
+
rexml (3.4.1)
|
|
85
|
+
rspec (3.13.0)
|
|
86
|
+
rspec-core (~> 3.13.0)
|
|
87
|
+
rspec-expectations (~> 3.13.0)
|
|
88
|
+
rspec-mocks (~> 3.13.0)
|
|
89
|
+
rspec-core (3.13.3)
|
|
90
|
+
rspec-support (~> 3.13.0)
|
|
91
|
+
rspec-expectations (3.13.3)
|
|
92
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
93
|
+
rspec-support (~> 3.13.0)
|
|
94
|
+
rspec-mocks (3.13.2)
|
|
95
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
96
|
+
rspec-support (~> 3.13.0)
|
|
97
|
+
rspec-support (3.13.2)
|
|
98
|
+
rubocop (1.82.1)
|
|
99
|
+
json (~> 2.3)
|
|
100
|
+
language_server-protocol (~> 3.17.0.2)
|
|
101
|
+
lint_roller (~> 1.1.0)
|
|
102
|
+
parallel (~> 1.10)
|
|
103
|
+
parser (>= 3.3.0.2)
|
|
104
|
+
rainbow (>= 2.2.2, < 4.0)
|
|
105
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
|
106
|
+
rubocop-ast (>= 1.48.0, < 2.0)
|
|
107
|
+
ruby-progressbar (~> 1.7)
|
|
108
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
|
109
|
+
rubocop-ast (1.48.0)
|
|
110
|
+
parser (>= 3.3.7.2)
|
|
111
|
+
prism (~> 1.4)
|
|
112
|
+
rubocop-performance (1.24.0)
|
|
113
|
+
lint_roller (~> 1.1)
|
|
114
|
+
rubocop (>= 1.72.1, < 2.0)
|
|
115
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
|
116
|
+
rubocop-rails (2.30.3)
|
|
117
|
+
activesupport (>= 4.2.0)
|
|
118
|
+
lint_roller (~> 1.1)
|
|
119
|
+
rack (>= 1.1)
|
|
120
|
+
rubocop (>= 1.72.1, < 2.0)
|
|
121
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
|
122
|
+
rubocop-rake (0.7.1)
|
|
123
|
+
lint_roller (~> 1.1)
|
|
124
|
+
rubocop (>= 1.72.1)
|
|
125
|
+
rubocop-rspec (3.5.0)
|
|
126
|
+
lint_roller (~> 1.1)
|
|
127
|
+
rubocop (~> 1.72, >= 1.72.1)
|
|
128
|
+
ruby-progressbar (1.13.0)
|
|
129
|
+
rubyzip (2.4.1)
|
|
130
|
+
securerandom (0.3.2)
|
|
131
|
+
simplecov (0.15.1)
|
|
132
|
+
docile (~> 1.1.0)
|
|
133
|
+
json (>= 1.8, < 3)
|
|
134
|
+
simplecov-html (~> 0.10.0)
|
|
135
|
+
simplecov-html (0.10.2)
|
|
136
|
+
thor (1.3.2)
|
|
137
|
+
tomlrb (2.0.3)
|
|
138
|
+
tzinfo (2.0.6)
|
|
139
|
+
concurrent-ruby (~> 1.0)
|
|
140
|
+
unicode-display_width (3.1.4)
|
|
141
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
|
142
|
+
unicode-emoji (4.0.4)
|
|
143
|
+
uri (1.0.3)
|
|
144
|
+
with_env (1.1.0)
|
|
145
|
+
xml-simple (1.1.9)
|
|
146
|
+
rexml
|
|
147
|
+
yard (0.9.21)
|
|
148
|
+
zeitwerk (2.6.18)
|
|
149
|
+
|
|
150
|
+
PLATFORMS
|
|
151
|
+
arm64-darwin-24
|
|
152
|
+
ruby
|
|
153
|
+
|
|
154
|
+
DEPENDENCIES
|
|
155
|
+
aether_observatory!
|
|
156
|
+
appraisal (~> 2.5.0)
|
|
157
|
+
bundler (~> 2.1)
|
|
158
|
+
license_finder (~> 7.0)
|
|
159
|
+
pry (>= 0.14)
|
|
160
|
+
pry-byebug (= 3.10.1)
|
|
161
|
+
rake (~> 13.0)
|
|
162
|
+
rspec (~> 3.0)
|
|
163
|
+
rubocop-powerhome!
|
|
164
|
+
securerandom (< 0.4.0)
|
|
165
|
+
simplecov (= 0.15.1)
|
|
166
|
+
yard (= 0.9.21)
|
|
167
|
+
zeitwerk (< 2.7)
|
|
168
|
+
|
|
169
|
+
BUNDLED WITH
|
|
170
|
+
2.5.23
|
data/aether_observatory.gemspec
CHANGED
|
@@ -28,10 +28,10 @@ Gem::Specification.new do |spec|
|
|
|
28
28
|
end
|
|
29
29
|
spec.require_paths = ["lib"]
|
|
30
30
|
|
|
31
|
-
spec.add_dependency "activemodel", ">= 6.
|
|
32
|
-
spec.add_dependency "activesupport", ">= 6.
|
|
33
|
-
spec.add_development_dependency "appraisal", "~> 2.5.0"
|
|
31
|
+
spec.add_dependency "activemodel", ">= 6.1"
|
|
32
|
+
spec.add_dependency "activesupport", ">= 6.1"
|
|
34
33
|
|
|
34
|
+
spec.add_development_dependency "appraisal", "~> 2.5.0"
|
|
35
35
|
spec.add_development_dependency "bundler", "~> 2.1"
|
|
36
36
|
spec.add_development_dependency "license_finder", "~> 7.0"
|
|
37
37
|
spec.add_development_dependency "pry", ">= 0.14"
|
|
@@ -40,5 +40,4 @@ Gem::Specification.new do |spec|
|
|
|
40
40
|
spec.add_development_dependency "rspec", "~> 3.0"
|
|
41
41
|
spec.add_development_dependency "simplecov", "0.15.1"
|
|
42
42
|
spec.add_development_dependency "yard", "0.9.21"
|
|
43
|
-
spec.metadata["rubygems_mfa_required"] = "true"
|
|
44
43
|
end
|
data/docs/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## [1.1.0] - 2026-03-23
|
|
2
|
+
|
|
3
|
+
- 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)
|
|
4
|
+
- Fix duplicate observer subscriptions on Rails code reload by stopping all observers before class unload via `ActiveSupport::Reloader.before_class_unload` [#392](https://github.com/powerhome/power-tools/pull/392)
|
|
5
|
+
|
|
6
|
+
## [1.0.1] - 2025-07-31
|
|
7
|
+
|
|
8
|
+
- Add AetherObservatory::Rspec::EventHelper [#333](https://github.com/powerhome/power-tools/pull/333)
|
|
9
|
+
- Lazily setup default rails logger so it works [#334](https://github.com/powerhome/power-tools/pull/334)
|
|
10
|
+
|
|
1
11
|
## [0.0.1] - 2024-12-06
|
|
2
12
|
|
|
3
|
-
- Extracts AetherObservatory from Talkbox engine.
|
|
13
|
+
- Extracts AetherObservatory from Talkbox engine.
|
data/docs/README.md
CHANGED
|
@@ -107,11 +107,16 @@ end
|
|
|
107
107
|
Now that we have a new observer named `ExampleObserver`, we will need to
|
|
108
108
|
start our observer before it will process any events. Observers default
|
|
109
109
|
to `stopped`, so we need to call `start` on each observer before they will
|
|
110
|
-
|
|
111
|
-
|
|
110
|
+
receive events.
|
|
111
|
+
|
|
112
|
+
In a Rails application, the recommended location to start observers is inside
|
|
113
|
+
a `to_prepare` block, which runs on every code reload cycle. Starting observers
|
|
114
|
+
in a plain initializer will cause them to stop permanently after the first reload.
|
|
112
115
|
|
|
113
116
|
```ruby
|
|
114
|
-
|
|
117
|
+
Rails.application.config.to_prepare do
|
|
118
|
+
AetherObservatory::Examples::ExampleObserver.start
|
|
119
|
+
end
|
|
115
120
|
```
|
|
116
121
|
|
|
117
122
|
<div align="right">
|
|
@@ -303,12 +308,15 @@ module AetherObservatory
|
|
|
303
308
|
end
|
|
304
309
|
```
|
|
305
310
|
|
|
306
|
-
We need to be sure to start our new observers before they will
|
|
307
|
-
any events.
|
|
311
|
+
We need to be sure to start our new observers before they will receive
|
|
312
|
+
any events. Use a `to_prepare` block so observers are restarted on every
|
|
313
|
+
code reload cycle.
|
|
308
314
|
|
|
309
315
|
```ruby
|
|
310
|
-
|
|
311
|
-
AetherObservatory::Examples::
|
|
316
|
+
Rails.application.config.to_prepare do
|
|
317
|
+
AetherObservatory::Examples::TalkboxCallHistoryObserver.start
|
|
318
|
+
AetherObservatory::Examples::TalkboxCallErrorObserver.start
|
|
319
|
+
end
|
|
312
320
|
```
|
|
313
321
|
|
|
314
322
|
Finally we are ready to create a new event and see what happens. First we
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ../../rubocop-powerhome
|
|
3
3
|
specs:
|
|
4
|
-
rubocop-powerhome (0.5.
|
|
5
|
-
rubocop (= 1.
|
|
4
|
+
rubocop-powerhome (0.5.5)
|
|
5
|
+
rubocop (= 1.74.0)
|
|
6
6
|
rubocop-performance
|
|
7
7
|
rubocop-rails
|
|
8
8
|
rubocop-rake
|
|
@@ -11,7 +11,7 @@ PATH
|
|
|
11
11
|
PATH
|
|
12
12
|
remote: ..
|
|
13
13
|
specs:
|
|
14
|
-
aether_observatory (1.0.
|
|
14
|
+
aether_observatory (1.0.1)
|
|
15
15
|
activemodel (>= 6.0.6.1)
|
|
16
16
|
activesupport (>= 6.0.6.1)
|
|
17
17
|
|
|
@@ -49,6 +49,7 @@ GEM
|
|
|
49
49
|
tomlrb (>= 1.3, < 2.1)
|
|
50
50
|
with_env (= 1.1.0)
|
|
51
51
|
xml-simple (~> 1.1.9)
|
|
52
|
+
lint_roller (1.1.0)
|
|
52
53
|
method_source (1.1.0)
|
|
53
54
|
minitest (5.25.4)
|
|
54
55
|
parallel (1.26.3)
|
|
@@ -80,17 +81,18 @@ GEM
|
|
|
80
81
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
81
82
|
rspec-support (~> 3.13.0)
|
|
82
83
|
rspec-support (3.13.2)
|
|
83
|
-
rubocop (1.
|
|
84
|
+
rubocop (1.74.0)
|
|
84
85
|
json (~> 2.3)
|
|
85
|
-
language_server-protocol (
|
|
86
|
+
language_server-protocol (~> 3.17.0.2)
|
|
87
|
+
lint_roller (~> 1.1.0)
|
|
86
88
|
parallel (~> 1.10)
|
|
87
89
|
parser (>= 3.3.0.2)
|
|
88
90
|
rainbow (>= 2.2.2, < 4.0)
|
|
89
|
-
regexp_parser (>= 2.
|
|
90
|
-
rubocop-ast (>= 1.
|
|
91
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
|
92
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
|
91
93
|
ruby-progressbar (~> 1.7)
|
|
92
|
-
unicode-display_width (>= 2.4.0, <
|
|
93
|
-
rubocop-ast (1.
|
|
94
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
|
95
|
+
rubocop-ast (1.39.0)
|
|
94
96
|
parser (>= 3.3.1.0)
|
|
95
97
|
rubocop-performance (1.23.0)
|
|
96
98
|
rubocop (>= 1.48.1, < 2.0)
|
data/gemfiles/rails_6_1.gemfile
CHANGED
|
@@ -4,8 +4,10 @@
|
|
|
4
4
|
|
|
5
5
|
source "https://rubygems.org"
|
|
6
6
|
|
|
7
|
-
gem "activemodel", "~> 6.1.7"
|
|
8
|
-
gem "activesupport", "~> 6.1.7"
|
|
7
|
+
gem "activemodel", "~> 6.1.7.10"
|
|
8
|
+
gem "activesupport", "~> 6.1.7.10"
|
|
9
9
|
gem "rubocop-powerhome", path: "../../rubocop-powerhome"
|
|
10
|
+
gem "securerandom", "< 0.4.0"
|
|
11
|
+
gem "zeitwerk", "< 2.7"
|
|
10
12
|
|
|
11
13
|
gemspec path: "../"
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ../../rubocop-powerhome
|
|
3
3
|
specs:
|
|
4
|
-
rubocop-powerhome (0.
|
|
5
|
-
rubocop (= 1.
|
|
4
|
+
rubocop-powerhome (0.6.1)
|
|
5
|
+
rubocop (= 1.82.1)
|
|
6
6
|
rubocop-performance
|
|
7
7
|
rubocop-rails
|
|
8
8
|
rubocop-rake
|
|
@@ -11,9 +11,9 @@ PATH
|
|
|
11
11
|
PATH
|
|
12
12
|
remote: ..
|
|
13
13
|
specs:
|
|
14
|
-
aether_observatory (1.
|
|
15
|
-
activemodel (>= 6.
|
|
16
|
-
activesupport (>= 6.
|
|
14
|
+
aether_observatory (1.1.0)
|
|
15
|
+
activemodel (>= 6.1)
|
|
16
|
+
activesupport (>= 6.1)
|
|
17
17
|
|
|
18
18
|
GEM
|
|
19
19
|
remote: https://rubygems.org/
|
|
@@ -30,17 +30,17 @@ GEM
|
|
|
30
30
|
bundler
|
|
31
31
|
rake
|
|
32
32
|
thor (>= 0.14.0)
|
|
33
|
-
ast (2.4.
|
|
33
|
+
ast (2.4.3)
|
|
34
34
|
byebug (11.1.3)
|
|
35
35
|
coderay (1.1.3)
|
|
36
|
-
concurrent-ruby (1.3.
|
|
37
|
-
csv (3.3.
|
|
38
|
-
diff-lcs (1.
|
|
36
|
+
concurrent-ruby (1.3.5)
|
|
37
|
+
csv (3.3.5)
|
|
38
|
+
diff-lcs (1.6.2)
|
|
39
39
|
docile (1.1.5)
|
|
40
|
-
i18n (1.14.
|
|
40
|
+
i18n (1.14.7)
|
|
41
41
|
concurrent-ruby (~> 1.0)
|
|
42
|
-
json (2.
|
|
43
|
-
language_server-protocol (3.17.0.
|
|
42
|
+
json (2.13.2)
|
|
43
|
+
language_server-protocol (3.17.0.5)
|
|
44
44
|
license_finder (7.2.1)
|
|
45
45
|
bundler
|
|
46
46
|
csv (~> 3.2)
|
|
@@ -49,12 +49,14 @@ GEM
|
|
|
49
49
|
tomlrb (>= 1.3, < 2.1)
|
|
50
50
|
with_env (= 1.1.0)
|
|
51
51
|
xml-simple (~> 1.1.9)
|
|
52
|
+
lint_roller (1.1.0)
|
|
52
53
|
method_source (1.1.0)
|
|
53
|
-
minitest (5.25.
|
|
54
|
-
parallel (1.
|
|
55
|
-
parser (3.3.
|
|
54
|
+
minitest (5.25.5)
|
|
55
|
+
parallel (1.27.0)
|
|
56
|
+
parser (3.3.9.0)
|
|
56
57
|
ast (~> 2.4.1)
|
|
57
58
|
racc
|
|
59
|
+
prism (1.4.0)
|
|
58
60
|
pry (0.14.2)
|
|
59
61
|
coderay (~> 1.1)
|
|
60
62
|
method_source (~> 1.0)
|
|
@@ -62,60 +64,69 @@ GEM
|
|
|
62
64
|
byebug (~> 11.0)
|
|
63
65
|
pry (>= 0.13, < 0.15)
|
|
64
66
|
racc (1.8.1)
|
|
65
|
-
rack (
|
|
67
|
+
rack (3.2.1)
|
|
66
68
|
rainbow (3.1.1)
|
|
67
|
-
rake (13.
|
|
68
|
-
regexp_parser (2.
|
|
69
|
-
rexml (3.4.
|
|
70
|
-
rspec (3.13.
|
|
69
|
+
rake (13.3.0)
|
|
70
|
+
regexp_parser (2.11.2)
|
|
71
|
+
rexml (3.4.3)
|
|
72
|
+
rspec (3.13.1)
|
|
71
73
|
rspec-core (~> 3.13.0)
|
|
72
74
|
rspec-expectations (~> 3.13.0)
|
|
73
75
|
rspec-mocks (~> 3.13.0)
|
|
74
|
-
rspec-core (3.13.
|
|
76
|
+
rspec-core (3.13.5)
|
|
75
77
|
rspec-support (~> 3.13.0)
|
|
76
|
-
rspec-expectations (3.13.
|
|
78
|
+
rspec-expectations (3.13.5)
|
|
77
79
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
78
80
|
rspec-support (~> 3.13.0)
|
|
79
|
-
rspec-mocks (3.13.
|
|
81
|
+
rspec-mocks (3.13.5)
|
|
80
82
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
81
83
|
rspec-support (~> 3.13.0)
|
|
82
|
-
rspec-support (3.13.
|
|
83
|
-
rubocop (1.
|
|
84
|
+
rspec-support (3.13.5)
|
|
85
|
+
rubocop (1.82.1)
|
|
84
86
|
json (~> 2.3)
|
|
85
|
-
language_server-protocol (
|
|
87
|
+
language_server-protocol (~> 3.17.0.2)
|
|
88
|
+
lint_roller (~> 1.1.0)
|
|
86
89
|
parallel (~> 1.10)
|
|
87
90
|
parser (>= 3.3.0.2)
|
|
88
91
|
rainbow (>= 2.2.2, < 4.0)
|
|
89
|
-
regexp_parser (>= 2.
|
|
90
|
-
rubocop-ast (>= 1.
|
|
92
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
|
93
|
+
rubocop-ast (>= 1.48.0, < 2.0)
|
|
91
94
|
ruby-progressbar (~> 1.7)
|
|
92
|
-
unicode-display_width (>= 2.4.0, <
|
|
93
|
-
rubocop-ast (1.
|
|
94
|
-
parser (>= 3.3.
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
95
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
|
96
|
+
rubocop-ast (1.48.0)
|
|
97
|
+
parser (>= 3.3.7.2)
|
|
98
|
+
prism (~> 1.4)
|
|
99
|
+
rubocop-performance (1.26.0)
|
|
100
|
+
lint_roller (~> 1.1)
|
|
101
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
102
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
|
103
|
+
rubocop-rails (2.33.3)
|
|
99
104
|
activesupport (>= 4.2.0)
|
|
105
|
+
lint_roller (~> 1.1)
|
|
100
106
|
rack (>= 1.1)
|
|
101
|
-
rubocop (>= 1.
|
|
102
|
-
rubocop-ast (>= 1.
|
|
103
|
-
rubocop-rake (0.
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
108
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
|
109
|
+
rubocop-rake (0.7.1)
|
|
110
|
+
lint_roller (~> 1.1)
|
|
111
|
+
rubocop (>= 1.72.1)
|
|
112
|
+
rubocop-rspec (3.7.0)
|
|
113
|
+
lint_roller (~> 1.1)
|
|
114
|
+
rubocop (~> 1.72, >= 1.72.1)
|
|
107
115
|
ruby-progressbar (1.13.0)
|
|
108
|
-
rubyzip (2.
|
|
116
|
+
rubyzip (2.4.1)
|
|
117
|
+
securerandom (0.3.2)
|
|
109
118
|
simplecov (0.15.1)
|
|
110
119
|
docile (~> 1.1.0)
|
|
111
120
|
json (>= 1.8, < 3)
|
|
112
121
|
simplecov-html (~> 0.10.0)
|
|
113
122
|
simplecov-html (0.10.2)
|
|
114
|
-
thor (1.
|
|
123
|
+
thor (1.4.0)
|
|
115
124
|
tomlrb (2.0.3)
|
|
116
125
|
tzinfo (2.0.6)
|
|
117
126
|
concurrent-ruby (~> 1.0)
|
|
118
|
-
unicode-display_width (2.
|
|
127
|
+
unicode-display_width (3.2.0)
|
|
128
|
+
unicode-emoji (~> 4.1)
|
|
129
|
+
unicode-emoji (4.1.0)
|
|
119
130
|
with_env (1.1.0)
|
|
120
131
|
xml-simple (1.1.9)
|
|
121
132
|
rexml
|
|
@@ -123,16 +134,12 @@ GEM
|
|
|
123
134
|
zeitwerk (2.6.18)
|
|
124
135
|
|
|
125
136
|
PLATFORMS
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
arm64-darwin
|
|
129
|
-
x86-linux
|
|
130
|
-
x86_64-darwin
|
|
131
|
-
x86_64-linux
|
|
137
|
+
arm64-darwin-24
|
|
138
|
+
ruby
|
|
132
139
|
|
|
133
140
|
DEPENDENCIES
|
|
134
|
-
activemodel (~> 6.1.7)
|
|
135
|
-
activesupport (~> 6.1.7)
|
|
141
|
+
activemodel (~> 6.1.7.10)
|
|
142
|
+
activesupport (~> 6.1.7.10)
|
|
136
143
|
aether_observatory!
|
|
137
144
|
appraisal (~> 2.5.0)
|
|
138
145
|
bundler (~> 2.1)
|
|
@@ -142,8 +149,10 @@ DEPENDENCIES
|
|
|
142
149
|
rake (~> 13.0)
|
|
143
150
|
rspec (~> 3.0)
|
|
144
151
|
rubocop-powerhome!
|
|
152
|
+
securerandom (< 0.4.0)
|
|
145
153
|
simplecov (= 0.15.1)
|
|
146
154
|
yard (= 0.9.21)
|
|
155
|
+
zeitwerk (< 2.7)
|
|
147
156
|
|
|
148
157
|
BUNDLED WITH
|
|
149
|
-
2.
|
|
158
|
+
2.5.23
|
data/gemfiles/rails_7_0.gemfile
CHANGED
|
@@ -4,8 +4,10 @@
|
|
|
4
4
|
|
|
5
5
|
source "https://rubygems.org"
|
|
6
6
|
|
|
7
|
-
gem "activemodel", "~> 7.0.8"
|
|
8
|
-
gem "activesupport", "~> 7.0.8"
|
|
7
|
+
gem "activemodel", "~> 7.0.8.7"
|
|
8
|
+
gem "activesupport", "~> 7.0.8.7"
|
|
9
9
|
gem "rubocop-powerhome", path: "../../rubocop-powerhome"
|
|
10
|
+
gem "securerandom", "< 0.4.0"
|
|
11
|
+
gem "zeitwerk", "< 2.7"
|
|
10
12
|
|
|
11
13
|
gemspec path: "../"
|