aether_observatory 0.0.1pre4 → 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/.rubocop.yml +4 -7
- data/.rubocop_todo.yml +31 -0
- data/Appraisals +8 -4
- data/Gemfile.lock +165 -0
- data/docs/CHANGELOG.md +8 -1
- data/gemfiles/.bundle/config +2 -0
- data/gemfiles/rails_6_0.gemfile +4 -1
- data/gemfiles/rails_6_0.gemfile.lock +13 -137
- data/gemfiles/rails_6_1.gemfile +4 -1
- data/gemfiles/rails_6_1.gemfile.lock +13 -141
- data/gemfiles/rails_7_0.gemfile +4 -1
- data/gemfiles/rails_7_0.gemfile.lock +13 -142
- data/gemfiles/rails_7_1.gemfile +4 -1
- data/gemfiles/rails_7_1.gemfile.lock +13 -162
- 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 +9 -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 +11 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 25570ca275bf9937545f69eac39d58e13f2003c775336196ac5c8869ff25a9ed
|
4
|
+
data.tar.gz: d7b321209d6ecdf93697c8e60235e748a8a5441deb74b08e4cddc854eadb3b79
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d2253bc3dfa01dff1b80bbeb89b53da11373ceda822d13e497249fe7f083e48e88f2ad74f56c406ed46fd62e5ea017de5c6473067b26254936b3cf8813095bd
|
7
|
+
data.tar.gz: f503ef77b7519af39651c70f55069e2b6d873110422f01e5c000907967456682b5bcdccc69ee83093c7109b5226531ad54ad31e251c344d7cb158c5ffaeb1cf5
|
data/.rubocop.yml
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
inherit_from: .rubocop_todo.yml
|
2
|
+
|
1
3
|
require:
|
2
4
|
- rubocop-powerhome
|
3
5
|
|
@@ -8,10 +10,5 @@ Metrics/MethodLength:
|
|
8
10
|
Exclude:
|
9
11
|
- spec/**/*_spec.rb
|
10
12
|
|
11
|
-
|
12
|
-
|
13
|
-
- 'gemfiles/*'
|
14
|
-
|
15
|
-
Bundler/OrderedGems:
|
16
|
-
Exclude:
|
17
|
-
- 'gemfiles/*'
|
13
|
+
Rails/SaveBang:
|
14
|
+
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,17 +1,21 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
appraise "rails-6-0" do
|
4
|
-
gem "
|
4
|
+
gem "activemodel", "~> 6.0.6"
|
5
|
+
gem "activesupport", "~> 6.0.6"
|
5
6
|
end
|
6
7
|
|
7
8
|
appraise "rails-6-1" do
|
8
|
-
gem "
|
9
|
+
gem "activemodel", "~> 6.1.7"
|
10
|
+
gem "activesupport", "~> 6.1.7"
|
9
11
|
end
|
10
12
|
|
11
13
|
appraise "rails-7-0" do
|
12
|
-
gem "
|
14
|
+
gem "activemodel", "~> 7.0.8"
|
15
|
+
gem "activesupport", "~> 7.0.8"
|
13
16
|
end
|
14
17
|
|
15
18
|
appraise "rails-7-1" do
|
16
|
-
gem "
|
19
|
+
gem "activemodel", "~> 7.1.3"
|
20
|
+
gem "activesupport", "~> 7.1.3"
|
17
21
|
end
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,165 @@
|
|
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 (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.7.1)
|
70
|
+
ast (~> 2.4.1)
|
71
|
+
racc
|
72
|
+
pry (0.14.2)
|
73
|
+
coderay (~> 1.1)
|
74
|
+
method_source (~> 1.0)
|
75
|
+
pry-byebug (3.10.1)
|
76
|
+
byebug (~> 11.0)
|
77
|
+
pry (>= 0.13, < 0.15)
|
78
|
+
racc (1.8.1)
|
79
|
+
rack (3.1.12)
|
80
|
+
rainbow (3.1.1)
|
81
|
+
rake (13.2.1)
|
82
|
+
regexp_parser (2.10.0)
|
83
|
+
rexml (3.4.1)
|
84
|
+
rspec (3.13.0)
|
85
|
+
rspec-core (~> 3.13.0)
|
86
|
+
rspec-expectations (~> 3.13.0)
|
87
|
+
rspec-mocks (~> 3.13.0)
|
88
|
+
rspec-core (3.13.3)
|
89
|
+
rspec-support (~> 3.13.0)
|
90
|
+
rspec-expectations (3.13.3)
|
91
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
92
|
+
rspec-support (~> 3.13.0)
|
93
|
+
rspec-mocks (3.13.2)
|
94
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
95
|
+
rspec-support (~> 3.13.0)
|
96
|
+
rspec-support (3.13.2)
|
97
|
+
rubocop (1.74.0)
|
98
|
+
json (~> 2.3)
|
99
|
+
language_server-protocol (~> 3.17.0.2)
|
100
|
+
lint_roller (~> 1.1.0)
|
101
|
+
parallel (~> 1.10)
|
102
|
+
parser (>= 3.3.0.2)
|
103
|
+
rainbow (>= 2.2.2, < 4.0)
|
104
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
105
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
106
|
+
ruby-progressbar (~> 1.7)
|
107
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
108
|
+
rubocop-ast (1.39.0)
|
109
|
+
parser (>= 3.3.1.0)
|
110
|
+
rubocop-performance (1.24.0)
|
111
|
+
lint_roller (~> 1.1)
|
112
|
+
rubocop (>= 1.72.1, < 2.0)
|
113
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
114
|
+
rubocop-rails (2.30.3)
|
115
|
+
activesupport (>= 4.2.0)
|
116
|
+
lint_roller (~> 1.1)
|
117
|
+
rack (>= 1.1)
|
118
|
+
rubocop (>= 1.72.1, < 2.0)
|
119
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
120
|
+
rubocop-rake (0.7.1)
|
121
|
+
lint_roller (~> 1.1)
|
122
|
+
rubocop (>= 1.72.1)
|
123
|
+
rubocop-rspec (3.5.0)
|
124
|
+
lint_roller (~> 1.1)
|
125
|
+
rubocop (~> 1.72, >= 1.72.1)
|
126
|
+
ruby-progressbar (1.13.0)
|
127
|
+
rubyzip (2.4.1)
|
128
|
+
securerandom (0.4.1)
|
129
|
+
simplecov (0.15.1)
|
130
|
+
docile (~> 1.1.0)
|
131
|
+
json (>= 1.8, < 3)
|
132
|
+
simplecov-html (~> 0.10.0)
|
133
|
+
simplecov-html (0.10.2)
|
134
|
+
thor (1.3.2)
|
135
|
+
tomlrb (2.0.3)
|
136
|
+
tzinfo (2.0.6)
|
137
|
+
concurrent-ruby (~> 1.0)
|
138
|
+
unicode-display_width (3.1.4)
|
139
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
140
|
+
unicode-emoji (4.0.4)
|
141
|
+
uri (1.0.3)
|
142
|
+
with_env (1.1.0)
|
143
|
+
xml-simple (1.1.9)
|
144
|
+
rexml
|
145
|
+
yard (0.9.21)
|
146
|
+
|
147
|
+
PLATFORMS
|
148
|
+
arm64-darwin-24
|
149
|
+
ruby
|
150
|
+
|
151
|
+
DEPENDENCIES
|
152
|
+
aether_observatory!
|
153
|
+
appraisal (~> 2.5.0)
|
154
|
+
bundler (~> 2.1)
|
155
|
+
license_finder (~> 7.0)
|
156
|
+
pry (>= 0.14)
|
157
|
+
pry-byebug (= 3.10.1)
|
158
|
+
rake (~> 13.0)
|
159
|
+
rspec (~> 3.0)
|
160
|
+
rubocop-powerhome!
|
161
|
+
simplecov (= 0.15.1)
|
162
|
+
yard (= 0.9.21)
|
163
|
+
|
164
|
+
BUNDLED WITH
|
165
|
+
2.5.23
|
data/docs/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
## Unreleased
|
2
|
+
|
3
|
+
## [1.0.1] - 2025-07-31
|
4
|
+
|
5
|
+
- Add AetherObservatory::Rspec::EventHelper [#333](https://github.com/powerhome/power-tools/pull/333)
|
6
|
+
- Lazily setup default rails logger so it works [#334](https://github.com/powerhome/power-tools/pull/334)
|
7
|
+
|
1
8
|
## [0.0.1] - 2024-12-06
|
2
9
|
|
3
|
-
- Extracts AetherObservatory from Talkbox engine.
|
10
|
+
- Extracts AetherObservatory from Talkbox engine.
|
data/gemfiles/rails_6_0.gemfile
CHANGED
@@ -1,8 +1,11 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# This file was generated by Appraisal
|
2
4
|
|
3
5
|
source "https://rubygems.org"
|
4
6
|
|
7
|
+
gem "activemodel", "~> 6.0.6"
|
8
|
+
gem "activesupport", "~> 6.0.6"
|
5
9
|
gem "rubocop-powerhome", path: "../../rubocop-powerhome"
|
6
|
-
gem "rails", "~> 6.0.6"
|
7
10
|
|
8
11
|
gemspec path: "../"
|
@@ -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,62 +11,15 @@ PATH
|
|
11
11
|
PATH
|
12
12
|
remote: ..
|
13
13
|
specs:
|
14
|
-
aether_observatory (
|
14
|
+
aether_observatory (1.0.1)
|
15
15
|
activemodel (>= 6.0.6.1)
|
16
16
|
activesupport (>= 6.0.6.1)
|
17
17
|
|
18
18
|
GEM
|
19
19
|
remote: https://rubygems.org/
|
20
20
|
specs:
|
21
|
-
actioncable (6.0.6.1)
|
22
|
-
actionpack (= 6.0.6.1)
|
23
|
-
nio4r (~> 2.0)
|
24
|
-
websocket-driver (>= 0.6.1)
|
25
|
-
actionmailbox (6.0.6.1)
|
26
|
-
actionpack (= 6.0.6.1)
|
27
|
-
activejob (= 6.0.6.1)
|
28
|
-
activerecord (= 6.0.6.1)
|
29
|
-
activestorage (= 6.0.6.1)
|
30
|
-
activesupport (= 6.0.6.1)
|
31
|
-
mail (>= 2.7.1)
|
32
|
-
actionmailer (6.0.6.1)
|
33
|
-
actionpack (= 6.0.6.1)
|
34
|
-
actionview (= 6.0.6.1)
|
35
|
-
activejob (= 6.0.6.1)
|
36
|
-
mail (~> 2.5, >= 2.5.4)
|
37
|
-
rails-dom-testing (~> 2.0)
|
38
|
-
actionpack (6.0.6.1)
|
39
|
-
actionview (= 6.0.6.1)
|
40
|
-
activesupport (= 6.0.6.1)
|
41
|
-
rack (~> 2.0, >= 2.0.8)
|
42
|
-
rack-test (>= 0.6.3)
|
43
|
-
rails-dom-testing (~> 2.0)
|
44
|
-
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
45
|
-
actiontext (6.0.6.1)
|
46
|
-
actionpack (= 6.0.6.1)
|
47
|
-
activerecord (= 6.0.6.1)
|
48
|
-
activestorage (= 6.0.6.1)
|
49
|
-
activesupport (= 6.0.6.1)
|
50
|
-
nokogiri (>= 1.8.5)
|
51
|
-
actionview (6.0.6.1)
|
52
|
-
activesupport (= 6.0.6.1)
|
53
|
-
builder (~> 3.1)
|
54
|
-
erubi (~> 1.4)
|
55
|
-
rails-dom-testing (~> 2.0)
|
56
|
-
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
57
|
-
activejob (6.0.6.1)
|
58
|
-
activesupport (= 6.0.6.1)
|
59
|
-
globalid (>= 0.3.6)
|
60
21
|
activemodel (6.0.6.1)
|
61
22
|
activesupport (= 6.0.6.1)
|
62
|
-
activerecord (6.0.6.1)
|
63
|
-
activemodel (= 6.0.6.1)
|
64
|
-
activesupport (= 6.0.6.1)
|
65
|
-
activestorage (6.0.6.1)
|
66
|
-
actionpack (= 6.0.6.1)
|
67
|
-
activejob (= 6.0.6.1)
|
68
|
-
activerecord (= 6.0.6.1)
|
69
|
-
marcel (~> 1.0)
|
70
23
|
activesupport (6.0.6.1)
|
71
24
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
72
25
|
i18n (>= 0.7, < 2)
|
@@ -78,18 +31,12 @@ GEM
|
|
78
31
|
rake
|
79
32
|
thor (>= 0.14.0)
|
80
33
|
ast (2.4.2)
|
81
|
-
builder (3.3.0)
|
82
34
|
byebug (11.1.3)
|
83
35
|
coderay (1.1.3)
|
84
36
|
concurrent-ruby (1.3.4)
|
85
|
-
crass (1.0.6)
|
86
37
|
csv (3.3.1)
|
87
|
-
date (3.4.1)
|
88
38
|
diff-lcs (1.5.1)
|
89
39
|
docile (1.1.5)
|
90
|
-
erubi (1.13.0)
|
91
|
-
globalid (1.1.0)
|
92
|
-
activesupport (>= 5.0)
|
93
40
|
i18n (1.14.6)
|
94
41
|
concurrent-ruby (~> 1.0)
|
95
42
|
json (2.9.0)
|
@@ -102,40 +49,9 @@ GEM
|
|
102
49
|
tomlrb (>= 1.3, < 2.1)
|
103
50
|
with_env (= 1.1.0)
|
104
51
|
xml-simple (~> 1.1.9)
|
105
|
-
|
106
|
-
crass (~> 1.0.2)
|
107
|
-
nokogiri (>= 1.12.0)
|
108
|
-
mail (2.8.1)
|
109
|
-
mini_mime (>= 0.1.1)
|
110
|
-
net-imap
|
111
|
-
net-pop
|
112
|
-
net-smtp
|
113
|
-
marcel (1.0.4)
|
52
|
+
lint_roller (1.1.0)
|
114
53
|
method_source (1.1.0)
|
115
|
-
mini_mime (1.1.5)
|
116
54
|
minitest (5.25.4)
|
117
|
-
net-imap (0.4.18)
|
118
|
-
date
|
119
|
-
net-protocol
|
120
|
-
net-pop (0.1.2)
|
121
|
-
net-protocol
|
122
|
-
net-protocol (0.2.2)
|
123
|
-
timeout
|
124
|
-
net-smtp (0.5.0)
|
125
|
-
net-protocol
|
126
|
-
nio4r (2.7.4)
|
127
|
-
nokogiri (1.17.2-aarch64-linux)
|
128
|
-
racc (~> 1.4)
|
129
|
-
nokogiri (1.17.2-arm-linux)
|
130
|
-
racc (~> 1.4)
|
131
|
-
nokogiri (1.17.2-arm64-darwin)
|
132
|
-
racc (~> 1.4)
|
133
|
-
nokogiri (1.17.2-x86-linux)
|
134
|
-
racc (~> 1.4)
|
135
|
-
nokogiri (1.17.2-x86_64-darwin)
|
136
|
-
racc (~> 1.4)
|
137
|
-
nokogiri (1.17.2-x86_64-linux)
|
138
|
-
racc (~> 1.4)
|
139
55
|
parallel (1.26.3)
|
140
56
|
parser (3.3.6.0)
|
141
57
|
ast (~> 2.4.1)
|
@@ -148,36 +64,6 @@ GEM
|
|
148
64
|
pry (>= 0.13, < 0.15)
|
149
65
|
racc (1.8.1)
|
150
66
|
rack (2.2.10)
|
151
|
-
rack-test (2.1.0)
|
152
|
-
rack (>= 1.3)
|
153
|
-
rails (6.0.6.1)
|
154
|
-
actioncable (= 6.0.6.1)
|
155
|
-
actionmailbox (= 6.0.6.1)
|
156
|
-
actionmailer (= 6.0.6.1)
|
157
|
-
actionpack (= 6.0.6.1)
|
158
|
-
actiontext (= 6.0.6.1)
|
159
|
-
actionview (= 6.0.6.1)
|
160
|
-
activejob (= 6.0.6.1)
|
161
|
-
activemodel (= 6.0.6.1)
|
162
|
-
activerecord (= 6.0.6.1)
|
163
|
-
activestorage (= 6.0.6.1)
|
164
|
-
activesupport (= 6.0.6.1)
|
165
|
-
bundler (>= 1.3.0)
|
166
|
-
railties (= 6.0.6.1)
|
167
|
-
sprockets-rails (>= 2.0.0)
|
168
|
-
rails-dom-testing (2.2.0)
|
169
|
-
activesupport (>= 5.0.0)
|
170
|
-
minitest
|
171
|
-
nokogiri (>= 1.6)
|
172
|
-
rails-html-sanitizer (1.6.2)
|
173
|
-
loofah (~> 2.21)
|
174
|
-
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
175
|
-
railties (6.0.6.1)
|
176
|
-
actionpack (= 6.0.6.1)
|
177
|
-
activesupport (= 6.0.6.1)
|
178
|
-
method_source
|
179
|
-
rake (>= 0.8.7)
|
180
|
-
thor (>= 0.20.3, < 2.0)
|
181
67
|
rainbow (3.1.1)
|
182
68
|
rake (13.2.1)
|
183
69
|
regexp_parser (2.9.3)
|
@@ -195,17 +81,18 @@ GEM
|
|
195
81
|
diff-lcs (>= 1.2.0, < 2.0)
|
196
82
|
rspec-support (~> 3.13.0)
|
197
83
|
rspec-support (3.13.2)
|
198
|
-
rubocop (1.
|
84
|
+
rubocop (1.74.0)
|
199
85
|
json (~> 2.3)
|
200
|
-
language_server-protocol (
|
86
|
+
language_server-protocol (~> 3.17.0.2)
|
87
|
+
lint_roller (~> 1.1.0)
|
201
88
|
parallel (~> 1.10)
|
202
89
|
parser (>= 3.3.0.2)
|
203
90
|
rainbow (>= 2.2.2, < 4.0)
|
204
|
-
regexp_parser (>= 2.
|
205
|
-
rubocop-ast (>= 1.
|
91
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
92
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
206
93
|
ruby-progressbar (~> 1.7)
|
207
|
-
unicode-display_width (>= 2.4.0, <
|
208
|
-
rubocop-ast (1.
|
94
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
95
|
+
rubocop-ast (1.39.0)
|
209
96
|
parser (>= 3.3.1.0)
|
210
97
|
rubocop-performance (1.23.0)
|
211
98
|
rubocop (>= 1.48.1, < 2.0)
|
@@ -221,29 +108,17 @@ GEM
|
|
221
108
|
rubocop (~> 1.61)
|
222
109
|
ruby-progressbar (1.13.0)
|
223
110
|
rubyzip (2.3.2)
|
224
|
-
securerandom (0.3.2)
|
225
111
|
simplecov (0.15.1)
|
226
112
|
docile (~> 1.1.0)
|
227
113
|
json (>= 1.8, < 3)
|
228
114
|
simplecov-html (~> 0.10.0)
|
229
115
|
simplecov-html (0.10.2)
|
230
|
-
sprockets (4.2.1)
|
231
|
-
concurrent-ruby (~> 1.0)
|
232
|
-
rack (>= 2.2.4, < 4)
|
233
|
-
sprockets-rails (3.4.2)
|
234
|
-
actionpack (>= 5.2)
|
235
|
-
activesupport (>= 5.2)
|
236
|
-
sprockets (>= 3.0.0)
|
237
116
|
thor (1.3.2)
|
238
117
|
thread_safe (0.3.6)
|
239
|
-
timeout (0.4.3)
|
240
118
|
tomlrb (2.0.3)
|
241
119
|
tzinfo (1.2.11)
|
242
120
|
thread_safe (~> 0.1)
|
243
121
|
unicode-display_width (2.6.0)
|
244
|
-
websocket-driver (0.7.6)
|
245
|
-
websocket-extensions (>= 0.1.0)
|
246
|
-
websocket-extensions (0.1.5)
|
247
122
|
with_env (1.1.0)
|
248
123
|
xml-simple (1.1.9)
|
249
124
|
rexml
|
@@ -259,13 +134,14 @@ PLATFORMS
|
|
259
134
|
x86_64-linux
|
260
135
|
|
261
136
|
DEPENDENCIES
|
137
|
+
activemodel (~> 6.0.6)
|
138
|
+
activesupport (~> 6.0.6)
|
262
139
|
aether_observatory!
|
263
140
|
appraisal (~> 2.5.0)
|
264
141
|
bundler (~> 2.1)
|
265
142
|
license_finder (~> 7.0)
|
266
143
|
pry (>= 0.14)
|
267
144
|
pry-byebug (= 3.10.1)
|
268
|
-
rails (~> 6.0.6)
|
269
145
|
rake (~> 13.0)
|
270
146
|
rspec (~> 3.0)
|
271
147
|
rubocop-powerhome!
|
data/gemfiles/rails_6_1.gemfile
CHANGED
@@ -1,8 +1,11 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# This file was generated by Appraisal
|
2
4
|
|
3
5
|
source "https://rubygems.org"
|
4
6
|
|
7
|
+
gem "activemodel", "~> 6.1.7"
|
8
|
+
gem "activesupport", "~> 6.1.7"
|
5
9
|
gem "rubocop-powerhome", path: "../../rubocop-powerhome"
|
6
|
-
gem "rails", "~> 6.1.7"
|
7
10
|
|
8
11
|
gemspec path: "../"
|