parentry 1.7.0 → 1.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +5 -1
- data/.tool-versions +1 -1
- data/Appraisals +4 -8
- data/Gemfile +9 -6
- data/gemfiles/activerecord_7.0.0.gemfile +8 -6
- data/gemfiles/activerecord_7.0.0.gemfile.lock +64 -74
- data/gemfiles/activerecord_7.1.0.gemfile +8 -6
- data/gemfiles/activerecord_7.1.0.gemfile.lock +79 -96
- data/gemfiles/activerecord_7.2.0.gemfile +8 -6
- data/gemfiles/activerecord_7.2.0.gemfile.lock +62 -70
- data/gemfiles/activerecord_8.0.0.gemfile +19 -0
- data/gemfiles/activerecord_8.0.0.gemfile.lock +200 -0
- data/lib/parentry/strategy/array/instance_methods.rb +3 -3
- data/lib/parentry/version.rb +1 -1
- data/parentry.gemspec +1 -1
- metadata +7 -7
- data/gemfiles/activerecord_6.1.0.gemfile +0 -21
- data/gemfiles/activerecord_6.1.0.gemfile.lock +0 -180
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 61ed10a4c8fb7e0f75a5535636333609d9289e8daa6cc340fa149cb02683fc1d
|
4
|
+
data.tar.gz: 222fcb1349c6e86d54bf833d172d2f4b95370e982cb7afe24c6d57eb1f03db74
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be51efd0458a9a45ad592a2ecedd73c0486933d2e0658eb911a4d2cb218074f52110b7249a749f7ac08ff20a6816348cf911d9ca9cf61897d38c717d79361a1f
|
7
|
+
data.tar.gz: 16f7c6e551a6cd232ee044bd106be6259534be3d1b0c4d7b56afd789f3f4a3946a5a0557b3f1dd7ca803338cd06276b4dcec3bf191a401544758cc738676e639
|
data/.github/workflows/ruby.yml
CHANGED
@@ -14,12 +14,16 @@ jobs:
|
|
14
14
|
- '3.2'
|
15
15
|
- '3.3'
|
16
16
|
activerecord:
|
17
|
-
- 6.1.0
|
18
17
|
- 7.0.0
|
19
18
|
- 7.1.0
|
19
|
+
- 7.2.0
|
20
|
+
- 8.0.0
|
20
21
|
strategy:
|
21
22
|
- array
|
22
23
|
- ltree
|
24
|
+
exclude:
|
25
|
+
- ruby: '3.1'
|
26
|
+
activerecord: 8.0.0
|
23
27
|
|
24
28
|
env:
|
25
29
|
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/activerecord_${{ matrix.activerecord }}.gemfile
|
data/.tool-versions
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ruby 3.3.
|
1
|
+
ruby 3.3.6
|
data/Appraisals
CHANGED
@@ -1,11 +1,3 @@
|
|
1
|
-
appraise 'activerecord_6.1.0' do
|
2
|
-
gem 'activerecord', '~> 6.1', '< 6.2'
|
3
|
-
gem 'base64'
|
4
|
-
gem 'bigdecimal'
|
5
|
-
gem 'drb'
|
6
|
-
gem 'mutex_m'
|
7
|
-
end
|
8
|
-
|
9
1
|
appraise 'activerecord_7.0.0' do
|
10
2
|
gem 'activerecord', '~> 7.0', '< 7.1'
|
11
3
|
gem 'base64'
|
@@ -21,3 +13,7 @@ end
|
|
21
13
|
appraise 'activerecord_7.2.0' do
|
22
14
|
gem 'activerecord', '~> 7.2', '< 8'
|
23
15
|
end
|
16
|
+
|
17
|
+
appraise 'activerecord_8.0.0' do
|
18
|
+
gem 'activerecord', '8.0.0', '< 8.1'
|
19
|
+
end
|
data/Gemfile
CHANGED
@@ -4,12 +4,15 @@ source 'https://rubygems.org'
|
|
4
4
|
gemspec
|
5
5
|
|
6
6
|
gem 'appraisal'
|
7
|
-
gem 'bundler'
|
8
|
-
gem 'combustion'
|
7
|
+
gem 'bundler'
|
8
|
+
gem 'combustion'
|
9
9
|
gem 'database_cleaner', '~> 2'
|
10
|
+
gem 'ostruct'
|
10
11
|
gem 'pg', '~> 1.5'
|
11
|
-
gem 'pry'
|
12
|
-
gem 'rake'
|
13
|
-
gem 'rspec-rails'
|
14
|
-
gem 'rubocop-rspec'
|
12
|
+
gem 'pry'
|
13
|
+
gem 'rake'
|
14
|
+
gem 'rspec-rails'
|
15
|
+
gem 'rubocop-rspec'
|
15
16
|
gem 'simplecov', '~> 0.20'
|
17
|
+
# The following version lock is necessary to support Ruby 3.1
|
18
|
+
gem 'zeitwerk', '~> 2.6.0'
|
@@ -3,15 +3,17 @@
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
|
5
5
|
gem "appraisal"
|
6
|
-
gem "bundler"
|
7
|
-
gem "combustion"
|
6
|
+
gem "bundler"
|
7
|
+
gem "combustion"
|
8
8
|
gem "database_cleaner", "~> 2"
|
9
|
+
gem "ostruct"
|
9
10
|
gem "pg", "~> 1.5"
|
10
|
-
gem "pry"
|
11
|
-
gem "rake"
|
12
|
-
gem "rspec-rails"
|
13
|
-
gem "rubocop-rspec"
|
11
|
+
gem "pry"
|
12
|
+
gem "rake"
|
13
|
+
gem "rspec-rails"
|
14
|
+
gem "rubocop-rspec"
|
14
15
|
gem "simplecov", "~> 0.20"
|
16
|
+
gem "zeitwerk", "~> 2.6.0"
|
15
17
|
gem "activerecord", "~> 7.0", "< 7.1"
|
16
18
|
gem "base64"
|
17
19
|
gem "bigdecimal"
|
@@ -1,31 +1,31 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
parentry (1.
|
5
|
-
activerecord (>= 6.1, < 8)
|
4
|
+
parentry (1.8.0)
|
5
|
+
activerecord (>= 6.1, < 8.1)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
actionpack (7.0.8.
|
11
|
-
actionview (= 7.0.8.
|
12
|
-
activesupport (= 7.0.8.
|
10
|
+
actionpack (7.0.8.6)
|
11
|
+
actionview (= 7.0.8.6)
|
12
|
+
activesupport (= 7.0.8.6)
|
13
13
|
rack (~> 2.0, >= 2.2.4)
|
14
14
|
rack-test (>= 0.6.3)
|
15
15
|
rails-dom-testing (~> 2.0)
|
16
16
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
17
|
-
actionview (7.0.8.
|
18
|
-
activesupport (= 7.0.8.
|
17
|
+
actionview (7.0.8.6)
|
18
|
+
activesupport (= 7.0.8.6)
|
19
19
|
builder (~> 3.1)
|
20
20
|
erubi (~> 1.4)
|
21
21
|
rails-dom-testing (~> 2.0)
|
22
22
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
23
|
-
activemodel (7.0.8.
|
24
|
-
activesupport (= 7.0.8.
|
25
|
-
activerecord (7.0.8.
|
26
|
-
activemodel (= 7.0.8.
|
27
|
-
activesupport (= 7.0.8.
|
28
|
-
activesupport (7.0.8.
|
23
|
+
activemodel (7.0.8.6)
|
24
|
+
activesupport (= 7.0.8.6)
|
25
|
+
activerecord (7.0.8.6)
|
26
|
+
activemodel (= 7.0.8.6)
|
27
|
+
activesupport (= 7.0.8.6)
|
28
|
+
activesupport (7.0.8.6)
|
29
29
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
30
30
|
i18n (>= 1.6, < 2)
|
31
31
|
minitest (>= 5.1)
|
@@ -37,48 +37,49 @@ GEM
|
|
37
37
|
ast (2.4.2)
|
38
38
|
base64 (0.2.0)
|
39
39
|
bigdecimal (3.1.8)
|
40
|
-
builder (3.
|
40
|
+
builder (3.3.0)
|
41
41
|
coderay (1.1.3)
|
42
|
-
combustion (1.
|
42
|
+
combustion (1.5.0)
|
43
43
|
activesupport (>= 3.0.0)
|
44
44
|
railties (>= 3.0.0)
|
45
45
|
thor (>= 0.14.6)
|
46
|
-
concurrent-ruby (1.
|
46
|
+
concurrent-ruby (1.3.4)
|
47
47
|
crass (1.0.6)
|
48
|
-
database_cleaner (2.0
|
48
|
+
database_cleaner (2.1.0)
|
49
49
|
database_cleaner-active_record (>= 2, < 3)
|
50
|
-
database_cleaner-active_record (2.
|
50
|
+
database_cleaner-active_record (2.2.0)
|
51
51
|
activerecord (>= 5.a)
|
52
52
|
database_cleaner-core (~> 2.0.0)
|
53
53
|
database_cleaner-core (2.0.1)
|
54
54
|
diff-lcs (1.5.1)
|
55
|
-
docile (1.4.
|
55
|
+
docile (1.4.1)
|
56
56
|
drb (2.2.1)
|
57
|
-
erubi (1.
|
58
|
-
i18n (1.14.
|
57
|
+
erubi (1.13.0)
|
58
|
+
i18n (1.14.6)
|
59
59
|
concurrent-ruby (~> 1.0)
|
60
|
-
json (2.
|
60
|
+
json (2.8.1)
|
61
61
|
language_server-protocol (3.17.0.3)
|
62
|
-
loofah (2.
|
62
|
+
loofah (2.23.1)
|
63
63
|
crass (~> 1.0.2)
|
64
64
|
nokogiri (>= 1.12.0)
|
65
65
|
method_source (1.1.0)
|
66
|
-
|
66
|
+
mini_portile2 (2.8.7)
|
67
|
+
minitest (5.25.1)
|
67
68
|
mutex_m (0.2.0)
|
68
|
-
nokogiri (1.16.
|
69
|
+
nokogiri (1.16.7)
|
70
|
+
mini_portile2 (~> 2.8.2)
|
69
71
|
racc (~> 1.4)
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
parser (3.3.0.5)
|
72
|
+
ostruct (0.6.1)
|
73
|
+
parallel (1.26.3)
|
74
|
+
parser (3.3.6.0)
|
74
75
|
ast (~> 2.4.1)
|
75
76
|
racc
|
76
|
-
pg (1.5.
|
77
|
+
pg (1.5.9)
|
77
78
|
pry (0.14.2)
|
78
79
|
coderay (~> 1.1)
|
79
80
|
method_source (~> 1.0)
|
80
|
-
racc (1.
|
81
|
-
rack (2.2.
|
81
|
+
racc (1.8.1)
|
82
|
+
rack (2.2.10)
|
82
83
|
rack-test (2.1.0)
|
83
84
|
rack (>= 1.3)
|
84
85
|
rails-dom-testing (2.2.0)
|
@@ -88,93 +89,82 @@ GEM
|
|
88
89
|
rails-html-sanitizer (1.6.0)
|
89
90
|
loofah (~> 2.21)
|
90
91
|
nokogiri (~> 1.14)
|
91
|
-
railties (7.0.8.
|
92
|
-
actionpack (= 7.0.8.
|
93
|
-
activesupport (= 7.0.8.
|
92
|
+
railties (7.0.8.6)
|
93
|
+
actionpack (= 7.0.8.6)
|
94
|
+
activesupport (= 7.0.8.6)
|
94
95
|
method_source
|
95
96
|
rake (>= 12.2)
|
96
97
|
thor (~> 1.0)
|
97
98
|
zeitwerk (~> 2.5)
|
98
99
|
rainbow (3.1.1)
|
99
100
|
rake (13.2.1)
|
100
|
-
regexp_parser (2.9.
|
101
|
-
|
102
|
-
rspec-core (3.13.0)
|
101
|
+
regexp_parser (2.9.2)
|
102
|
+
rspec-core (3.13.2)
|
103
103
|
rspec-support (~> 3.13.0)
|
104
|
-
rspec-expectations (3.13.
|
104
|
+
rspec-expectations (3.13.3)
|
105
105
|
diff-lcs (>= 1.2.0, < 2.0)
|
106
106
|
rspec-support (~> 3.13.0)
|
107
|
-
rspec-mocks (3.13.
|
107
|
+
rspec-mocks (3.13.2)
|
108
108
|
diff-lcs (>= 1.2.0, < 2.0)
|
109
109
|
rspec-support (~> 3.13.0)
|
110
|
-
rspec-rails (
|
111
|
-
actionpack (>=
|
112
|
-
activesupport (>=
|
113
|
-
railties (>=
|
110
|
+
rspec-rails (7.0.1)
|
111
|
+
actionpack (>= 7.0)
|
112
|
+
activesupport (>= 7.0)
|
113
|
+
railties (>= 7.0)
|
114
114
|
rspec-core (~> 3.13)
|
115
115
|
rspec-expectations (~> 3.13)
|
116
116
|
rspec-mocks (~> 3.13)
|
117
117
|
rspec-support (~> 3.13)
|
118
118
|
rspec-support (3.13.1)
|
119
|
-
rubocop (1.
|
119
|
+
rubocop (1.68.0)
|
120
120
|
json (~> 2.3)
|
121
121
|
language_server-protocol (>= 3.17.0)
|
122
122
|
parallel (~> 1.10)
|
123
123
|
parser (>= 3.3.0.2)
|
124
124
|
rainbow (>= 2.2.2, < 4.0)
|
125
|
-
regexp_parser (>=
|
126
|
-
|
127
|
-
rubocop-ast (>= 1.31.1, < 2.0)
|
125
|
+
regexp_parser (>= 2.4, < 3.0)
|
126
|
+
rubocop-ast (>= 1.32.2, < 2.0)
|
128
127
|
ruby-progressbar (~> 1.7)
|
129
128
|
unicode-display_width (>= 2.4.0, < 3.0)
|
130
|
-
rubocop-ast (1.
|
131
|
-
parser (>= 3.3.0
|
132
|
-
rubocop-
|
133
|
-
rubocop (~> 1.
|
134
|
-
rubocop-factory_bot (2.25.1)
|
135
|
-
rubocop (~> 1.41)
|
136
|
-
rubocop-rspec (2.29.1)
|
137
|
-
rubocop (~> 1.40)
|
138
|
-
rubocop-capybara (~> 2.17)
|
139
|
-
rubocop-factory_bot (~> 2.22)
|
140
|
-
rubocop-rspec_rails (~> 2.28)
|
141
|
-
rubocop-rspec_rails (2.28.3)
|
142
|
-
rubocop (~> 1.40)
|
129
|
+
rubocop-ast (1.34.1)
|
130
|
+
parser (>= 3.3.1.0)
|
131
|
+
rubocop-rspec (3.2.0)
|
132
|
+
rubocop (~> 1.61)
|
143
133
|
ruby-progressbar (1.13.0)
|
144
134
|
simplecov (0.22.0)
|
145
135
|
docile (~> 1.1)
|
146
136
|
simplecov-html (~> 0.11)
|
147
137
|
simplecov_json_formatter (~> 0.1)
|
148
|
-
simplecov-html (0.
|
138
|
+
simplecov-html (0.13.1)
|
149
139
|
simplecov_json_formatter (0.1.4)
|
150
|
-
thor (1.3.
|
140
|
+
thor (1.3.2)
|
151
141
|
tzinfo (2.0.6)
|
152
142
|
concurrent-ruby (~> 1.0)
|
153
|
-
unicode-display_width (2.
|
154
|
-
zeitwerk (2.6.
|
143
|
+
unicode-display_width (2.6.0)
|
144
|
+
zeitwerk (2.6.18)
|
155
145
|
|
156
146
|
PLATFORMS
|
157
|
-
|
158
|
-
x86_64-darwin-23
|
159
|
-
x86_64-linux
|
147
|
+
ruby
|
160
148
|
|
161
149
|
DEPENDENCIES
|
162
150
|
activerecord (~> 7.0, < 7.1)
|
163
151
|
appraisal
|
164
152
|
base64
|
165
153
|
bigdecimal
|
166
|
-
bundler
|
167
|
-
combustion
|
154
|
+
bundler
|
155
|
+
combustion
|
168
156
|
database_cleaner (~> 2)
|
169
157
|
drb
|
170
158
|
mutex_m
|
159
|
+
ostruct
|
171
160
|
parentry!
|
172
161
|
pg (~> 1.5)
|
173
|
-
pry
|
174
|
-
rake
|
175
|
-
rspec-rails
|
176
|
-
rubocop-rspec
|
162
|
+
pry
|
163
|
+
rake
|
164
|
+
rspec-rails
|
165
|
+
rubocop-rspec
|
177
166
|
simplecov (~> 0.20)
|
167
|
+
zeitwerk (~> 2.6.0)
|
178
168
|
|
179
169
|
BUNDLED WITH
|
180
170
|
2.5.17
|
@@ -3,15 +3,17 @@
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
|
5
5
|
gem "appraisal"
|
6
|
-
gem "bundler"
|
7
|
-
gem "combustion"
|
6
|
+
gem "bundler"
|
7
|
+
gem "combustion"
|
8
8
|
gem "database_cleaner", "~> 2"
|
9
|
+
gem "ostruct"
|
9
10
|
gem "pg", "~> 1.5"
|
10
|
-
gem "pry"
|
11
|
-
gem "rake"
|
12
|
-
gem "rspec-rails"
|
13
|
-
gem "rubocop-rspec"
|
11
|
+
gem "pry"
|
12
|
+
gem "rake"
|
13
|
+
gem "rspec-rails"
|
14
|
+
gem "rubocop-rspec"
|
14
15
|
gem "simplecov", "~> 0.20"
|
16
|
+
gem "zeitwerk", "~> 2.6.0"
|
15
17
|
gem "activerecord", "~> 7.1", "< 7.2"
|
16
18
|
|
17
19
|
gemspec path: "../"
|
@@ -1,15 +1,15 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
parentry (1.
|
5
|
-
activerecord (>= 6.1, < 8)
|
4
|
+
parentry (1.8.0)
|
5
|
+
activerecord (>= 6.1, < 8.1)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
actionpack (7.1.
|
11
|
-
actionview (= 7.1.
|
12
|
-
activesupport (= 7.1.
|
10
|
+
actionpack (7.1.5)
|
11
|
+
actionview (= 7.1.5)
|
12
|
+
activesupport (= 7.1.5)
|
13
13
|
nokogiri (>= 1.8.5)
|
14
14
|
racc
|
15
15
|
rack (>= 2.2.4)
|
@@ -17,27 +17,30 @@ GEM
|
|
17
17
|
rack-test (>= 0.6.3)
|
18
18
|
rails-dom-testing (~> 2.2)
|
19
19
|
rails-html-sanitizer (~> 1.6)
|
20
|
-
actionview (7.1.
|
21
|
-
activesupport (= 7.1.
|
20
|
+
actionview (7.1.5)
|
21
|
+
activesupport (= 7.1.5)
|
22
22
|
builder (~> 3.1)
|
23
23
|
erubi (~> 1.11)
|
24
24
|
rails-dom-testing (~> 2.2)
|
25
25
|
rails-html-sanitizer (~> 1.6)
|
26
|
-
activemodel (7.1.
|
27
|
-
activesupport (= 7.1.
|
28
|
-
activerecord (7.1.
|
29
|
-
activemodel (= 7.1.
|
30
|
-
activesupport (= 7.1.
|
26
|
+
activemodel (7.1.5)
|
27
|
+
activesupport (= 7.1.5)
|
28
|
+
activerecord (7.1.5)
|
29
|
+
activemodel (= 7.1.5)
|
30
|
+
activesupport (= 7.1.5)
|
31
31
|
timeout (>= 0.4.0)
|
32
|
-
activesupport (7.1.
|
32
|
+
activesupport (7.1.5)
|
33
33
|
base64
|
34
|
+
benchmark (>= 0.3)
|
34
35
|
bigdecimal
|
35
36
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
36
37
|
connection_pool (>= 2.2.5)
|
37
38
|
drb
|
38
39
|
i18n (>= 1.6, < 2)
|
40
|
+
logger (>= 1.4.2)
|
39
41
|
minitest (>= 5.1)
|
40
42
|
mutex_m
|
43
|
+
securerandom (>= 0.3)
|
41
44
|
tzinfo (~> 2.0)
|
42
45
|
appraisal (2.5.0)
|
43
46
|
bundler
|
@@ -45,71 +48,65 @@ GEM
|
|
45
48
|
thor (>= 0.14.0)
|
46
49
|
ast (2.4.2)
|
47
50
|
base64 (0.2.0)
|
48
|
-
|
49
|
-
|
51
|
+
benchmark (0.4.0)
|
52
|
+
bigdecimal (3.1.8)
|
53
|
+
builder (3.3.0)
|
50
54
|
coderay (1.1.3)
|
51
|
-
combustion (1.
|
55
|
+
combustion (1.5.0)
|
52
56
|
activesupport (>= 3.0.0)
|
53
57
|
railties (>= 3.0.0)
|
54
58
|
thor (>= 0.14.6)
|
55
|
-
concurrent-ruby (1.
|
59
|
+
concurrent-ruby (1.3.4)
|
56
60
|
connection_pool (2.4.1)
|
57
61
|
crass (1.0.6)
|
58
|
-
database_cleaner (2.0
|
62
|
+
database_cleaner (2.1.0)
|
59
63
|
database_cleaner-active_record (>= 2, < 3)
|
60
|
-
database_cleaner-active_record (2.
|
64
|
+
database_cleaner-active_record (2.2.0)
|
61
65
|
activerecord (>= 5.a)
|
62
66
|
database_cleaner-core (~> 2.0.0)
|
63
67
|
database_cleaner-core (2.0.1)
|
64
68
|
diff-lcs (1.5.1)
|
65
|
-
docile (1.4.
|
69
|
+
docile (1.4.1)
|
66
70
|
drb (2.2.1)
|
67
|
-
erubi (1.
|
68
|
-
i18n (1.14.
|
71
|
+
erubi (1.13.0)
|
72
|
+
i18n (1.14.6)
|
69
73
|
concurrent-ruby (~> 1.0)
|
70
74
|
io-console (0.7.2)
|
71
|
-
irb (1.
|
72
|
-
rdoc
|
75
|
+
irb (1.14.1)
|
76
|
+
rdoc (>= 4.0.0)
|
73
77
|
reline (>= 0.4.2)
|
74
|
-
json (2.
|
78
|
+
json (2.8.1)
|
75
79
|
language_server-protocol (3.17.0.3)
|
76
|
-
|
80
|
+
logger (1.6.1)
|
81
|
+
loofah (2.23.1)
|
77
82
|
crass (~> 1.0.2)
|
78
83
|
nokogiri (>= 1.12.0)
|
79
84
|
method_source (1.1.0)
|
80
|
-
|
85
|
+
mini_portile2 (2.8.7)
|
86
|
+
minitest (5.25.1)
|
81
87
|
mutex_m (0.2.0)
|
82
|
-
nokogiri (1.16.
|
88
|
+
nokogiri (1.16.7)
|
89
|
+
mini_portile2 (~> 2.8.2)
|
83
90
|
racc (~> 1.4)
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
racc (~> 1.4)
|
88
|
-
nokogiri (1.16.4-x86-linux)
|
89
|
-
racc (~> 1.4)
|
90
|
-
nokogiri (1.16.4-x86_64-darwin)
|
91
|
-
racc (~> 1.4)
|
92
|
-
nokogiri (1.16.4-x86_64-linux)
|
93
|
-
racc (~> 1.4)
|
94
|
-
parallel (1.24.0)
|
95
|
-
parser (3.3.0.5)
|
91
|
+
ostruct (0.6.1)
|
92
|
+
parallel (1.26.3)
|
93
|
+
parser (3.3.6.0)
|
96
94
|
ast (~> 2.4.1)
|
97
95
|
racc
|
98
|
-
pg (1.5.
|
96
|
+
pg (1.5.9)
|
99
97
|
pry (0.14.2)
|
100
98
|
coderay (~> 1.1)
|
101
99
|
method_source (~> 1.0)
|
102
|
-
psych (5.
|
100
|
+
psych (5.2.0)
|
103
101
|
stringio
|
104
|
-
racc (1.
|
105
|
-
rack (3.
|
102
|
+
racc (1.8.1)
|
103
|
+
rack (3.1.8)
|
106
104
|
rack-session (2.0.0)
|
107
105
|
rack (>= 3.0.0)
|
108
106
|
rack-test (2.1.0)
|
109
107
|
rack (>= 1.3)
|
110
|
-
rackup (2.
|
108
|
+
rackup (2.2.0)
|
111
109
|
rack (>= 3)
|
112
|
-
webrick (~> 1.8)
|
113
110
|
rails-dom-testing (2.2.0)
|
114
111
|
activesupport (>= 5.0.0)
|
115
112
|
minitest
|
@@ -117,9 +114,9 @@ GEM
|
|
117
114
|
rails-html-sanitizer (1.6.0)
|
118
115
|
loofah (~> 2.21)
|
119
116
|
nokogiri (~> 1.14)
|
120
|
-
railties (7.1.
|
121
|
-
actionpack (= 7.1.
|
122
|
-
activesupport (= 7.1.
|
117
|
+
railties (7.1.5)
|
118
|
+
actionpack (= 7.1.5)
|
119
|
+
activesupport (= 7.1.5)
|
123
120
|
irb
|
124
121
|
rackup (>= 1.0.0)
|
125
122
|
rake (>= 12.2)
|
@@ -127,90 +124,76 @@ GEM
|
|
127
124
|
zeitwerk (~> 2.6)
|
128
125
|
rainbow (3.1.1)
|
129
126
|
rake (13.2.1)
|
130
|
-
rdoc (6.
|
127
|
+
rdoc (6.7.0)
|
131
128
|
psych (>= 4.0.0)
|
132
|
-
regexp_parser (2.9.
|
133
|
-
reline (0.5.
|
129
|
+
regexp_parser (2.9.2)
|
130
|
+
reline (0.5.11)
|
134
131
|
io-console (~> 0.5)
|
135
|
-
|
136
|
-
rspec-core (3.13.0)
|
132
|
+
rspec-core (3.13.2)
|
137
133
|
rspec-support (~> 3.13.0)
|
138
|
-
rspec-expectations (3.13.
|
134
|
+
rspec-expectations (3.13.3)
|
139
135
|
diff-lcs (>= 1.2.0, < 2.0)
|
140
136
|
rspec-support (~> 3.13.0)
|
141
|
-
rspec-mocks (3.13.
|
137
|
+
rspec-mocks (3.13.2)
|
142
138
|
diff-lcs (>= 1.2.0, < 2.0)
|
143
139
|
rspec-support (~> 3.13.0)
|
144
|
-
rspec-rails (
|
145
|
-
actionpack (>=
|
146
|
-
activesupport (>=
|
147
|
-
railties (>=
|
140
|
+
rspec-rails (7.0.1)
|
141
|
+
actionpack (>= 7.0)
|
142
|
+
activesupport (>= 7.0)
|
143
|
+
railties (>= 7.0)
|
148
144
|
rspec-core (~> 3.13)
|
149
145
|
rspec-expectations (~> 3.13)
|
150
146
|
rspec-mocks (~> 3.13)
|
151
147
|
rspec-support (~> 3.13)
|
152
148
|
rspec-support (3.13.1)
|
153
|
-
rubocop (1.
|
149
|
+
rubocop (1.68.0)
|
154
150
|
json (~> 2.3)
|
155
151
|
language_server-protocol (>= 3.17.0)
|
156
152
|
parallel (~> 1.10)
|
157
153
|
parser (>= 3.3.0.2)
|
158
154
|
rainbow (>= 2.2.2, < 4.0)
|
159
|
-
regexp_parser (>=
|
160
|
-
|
161
|
-
rubocop-ast (>= 1.31.1, < 2.0)
|
155
|
+
regexp_parser (>= 2.4, < 3.0)
|
156
|
+
rubocop-ast (>= 1.32.2, < 2.0)
|
162
157
|
ruby-progressbar (~> 1.7)
|
163
158
|
unicode-display_width (>= 2.4.0, < 3.0)
|
164
|
-
rubocop-ast (1.
|
165
|
-
parser (>= 3.3.0
|
166
|
-
rubocop-
|
167
|
-
rubocop (~> 1.
|
168
|
-
rubocop-factory_bot (2.25.1)
|
169
|
-
rubocop (~> 1.41)
|
170
|
-
rubocop-rspec (2.29.1)
|
171
|
-
rubocop (~> 1.40)
|
172
|
-
rubocop-capybara (~> 2.17)
|
173
|
-
rubocop-factory_bot (~> 2.22)
|
174
|
-
rubocop-rspec_rails (~> 2.28)
|
175
|
-
rubocop-rspec_rails (2.28.3)
|
176
|
-
rubocop (~> 1.40)
|
159
|
+
rubocop-ast (1.34.1)
|
160
|
+
parser (>= 3.3.1.0)
|
161
|
+
rubocop-rspec (3.2.0)
|
162
|
+
rubocop (~> 1.61)
|
177
163
|
ruby-progressbar (1.13.0)
|
164
|
+
securerandom (0.3.1)
|
178
165
|
simplecov (0.22.0)
|
179
166
|
docile (~> 1.1)
|
180
167
|
simplecov-html (~> 0.11)
|
181
168
|
simplecov_json_formatter (~> 0.1)
|
182
|
-
simplecov-html (0.
|
169
|
+
simplecov-html (0.13.1)
|
183
170
|
simplecov_json_formatter (0.1.4)
|
184
|
-
stringio (3.1.
|
185
|
-
thor (1.3.
|
186
|
-
timeout (0.4.
|
171
|
+
stringio (3.1.2)
|
172
|
+
thor (1.3.2)
|
173
|
+
timeout (0.4.2)
|
187
174
|
tzinfo (2.0.6)
|
188
175
|
concurrent-ruby (~> 1.0)
|
189
|
-
unicode-display_width (2.
|
190
|
-
|
191
|
-
zeitwerk (2.6.13)
|
176
|
+
unicode-display_width (2.6.0)
|
177
|
+
zeitwerk (2.6.18)
|
192
178
|
|
193
179
|
PLATFORMS
|
194
|
-
|
195
|
-
arm-linux
|
196
|
-
arm64-darwin
|
197
|
-
x86-linux
|
198
|
-
x86_64-darwin
|
199
|
-
x86_64-linux
|
180
|
+
ruby
|
200
181
|
|
201
182
|
DEPENDENCIES
|
202
183
|
activerecord (~> 7.1, < 7.2)
|
203
184
|
appraisal
|
204
|
-
bundler
|
205
|
-
combustion
|
185
|
+
bundler
|
186
|
+
combustion
|
206
187
|
database_cleaner (~> 2)
|
188
|
+
ostruct
|
207
189
|
parentry!
|
208
190
|
pg (~> 1.5)
|
209
|
-
pry
|
210
|
-
rake
|
211
|
-
rspec-rails
|
212
|
-
rubocop-rspec
|
191
|
+
pry
|
192
|
+
rake
|
193
|
+
rspec-rails
|
194
|
+
rubocop-rspec
|
213
195
|
simplecov (~> 0.20)
|
196
|
+
zeitwerk (~> 2.6.0)
|
214
197
|
|
215
198
|
BUNDLED WITH
|
216
199
|
2.5.17
|