data_migrate 9.4.2 → 11.0.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/build.yml +3 -3
- data/Appraisals +5 -0
- data/Changelog.md +12 -2
- data/Gemfile.lock +13 -5
- data/README.md +11 -2
- data/gemfiles/rails_6.1.gemfile.lock +81 -73
- data/gemfiles/rails_7.0.gemfile.lock +78 -70
- data/gemfiles/rails_7.1.gemfile +1 -1
- data/gemfiles/rails_7.1.gemfile.lock +85 -78
- data/gemfiles/rails_7.2.gemfile +7 -0
- data/gemfiles/rails_7.2.gemfile.lock +269 -0
- data/lib/data_migrate/database_tasks.rb +7 -2
- data/lib/data_migrate/rails_helper.rb +14 -3
- data/lib/data_migrate/version.rb +1 -1
- data/spec/data_migrate/migration_context_spec.rb +10 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f4cb85674ca4d30151e8398c7459c398cb966db2340569465c891680b46a27f4
|
4
|
+
data.tar.gz: a76f23e9e73e3f1be609d982d98788871343e27375aa917d05c69c5f244b31a5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c7a5fc972ff75b6232c83166f647788bf0ccc20fdb876e20e1e8635155b03e35ec8e8e06a3d266f1725a95f26cc34cb8016235e9d39ebee93275180309a212d
|
7
|
+
data.tar.gz: d54ab0386a5b4c926b3979faafedf6b9eb9a7c1a29b1ce16c5c985255195194092600740ffafe9ef6fb974936a0d381eaaec5f60c9ca76b16948d078e33445a5
|
data/.github/workflows/build.yml
CHANGED
@@ -9,9 +9,8 @@ jobs:
|
|
9
9
|
strategy:
|
10
10
|
fail-fast: false
|
11
11
|
matrix:
|
12
|
-
os: [ "ubuntu-
|
12
|
+
os: [ "ubuntu-24.04" ]
|
13
13
|
ruby:
|
14
|
-
- '3.0'
|
15
14
|
- '3.1'
|
16
15
|
- '3.2'
|
17
16
|
- '3.3'
|
@@ -19,13 +18,14 @@ jobs:
|
|
19
18
|
- gemfiles/rails_6.1.gemfile
|
20
19
|
- gemfiles/rails_7.0.gemfile
|
21
20
|
- gemfiles/rails_7.1.gemfile
|
21
|
+
- gemfiles/rails_7.2.gemfile
|
22
22
|
runs-on: ubuntu-latest
|
23
23
|
env:
|
24
24
|
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
|
25
25
|
RAILS_ENV: test
|
26
26
|
steps:
|
27
27
|
- name: Checkout code
|
28
|
-
uses: actions/checkout@
|
28
|
+
uses: actions/checkout@v4
|
29
29
|
- name: Set up Ruby
|
30
30
|
uses: ruby/setup-ruby@v1
|
31
31
|
with:
|
data/Appraisals
CHANGED
data/Changelog.md
CHANGED
@@ -1,10 +1,20 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
# 11.0.0
|
4
|
+
|
5
|
+
- [Update rexml to 3.3.6](https://github.com/ilyakatz/data-migrate/pull/329)
|
6
|
+
- Fixes a bug which ignored migrations on [Rails 7.1 and higher](https://github.com/ilyakatz/data-migrate/pull/326)
|
7
|
+
|
8
|
+
# 11.0.0rc
|
9
|
+
- Remove Ruby 3.0 from build matrix
|
10
|
+
- Support Rails 7.2.0 https://github.com/ilyakatz/data-migrate/pull/312
|
11
|
+
- Update gemfile.lock builds
|
12
|
+
|
3
13
|
## 9.4.2
|
4
|
-
|
14
|
+
- Fix db:prepare:with_data task
|
5
15
|
|
6
16
|
## 9.4.1
|
7
|
-
|
17
|
+
- Add db:prepare task
|
8
18
|
|
9
19
|
## 9.4.0
|
10
20
|
- Reset model schema cache before each data migration https://github.com/ilyakatz/data-migrate/pull/307
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
data_migrate (
|
4
|
+
data_migrate (11.0.0)
|
5
5
|
activerecord (>= 6.1)
|
6
6
|
railties (>= 6.1)
|
7
7
|
|
@@ -71,9 +71,13 @@ GEM
|
|
71
71
|
method_source (1.0.0)
|
72
72
|
minitest (5.23.1)
|
73
73
|
mutex_m (0.2.0)
|
74
|
-
nokogiri (1.16.
|
74
|
+
nokogiri (1.16.2-aarch64-linux)
|
75
75
|
racc (~> 1.4)
|
76
|
-
nokogiri (1.16.
|
76
|
+
nokogiri (1.16.2-arm64-darwin)
|
77
|
+
racc (~> 1.4)
|
78
|
+
nokogiri (1.16.2-x86_64-darwin)
|
79
|
+
racc (~> 1.4)
|
80
|
+
nokogiri (1.16.2-x86_64-linux)
|
77
81
|
racc (~> 1.4)
|
78
82
|
overcommit (0.63.0)
|
79
83
|
childprocess (>= 0.6.3, < 6)
|
@@ -120,8 +124,8 @@ GEM
|
|
120
124
|
regexp_parser (2.9.0)
|
121
125
|
reline (0.4.3)
|
122
126
|
io-console (~> 0.5)
|
123
|
-
rexml (3.
|
124
|
-
strscan
|
127
|
+
rexml (3.3.6)
|
128
|
+
strscan
|
125
129
|
rspec (3.13.0)
|
126
130
|
rspec-core (~> 3.13.0)
|
127
131
|
rspec-expectations (~> 3.13.0)
|
@@ -149,7 +153,9 @@ GEM
|
|
149
153
|
rubocop-ast (1.30.0)
|
150
154
|
parser (>= 3.2.1.0)
|
151
155
|
ruby-progressbar (1.13.0)
|
156
|
+
sqlite3 (1.7.2-aarch64-linux)
|
152
157
|
sqlite3 (1.7.2-arm64-darwin)
|
158
|
+
sqlite3 (1.7.2-x86_64-darwin)
|
153
159
|
sqlite3 (1.7.2-x86_64-linux)
|
154
160
|
stringio (3.1.0)
|
155
161
|
strscan (3.1.0)
|
@@ -163,8 +169,10 @@ GEM
|
|
163
169
|
zeitwerk (2.6.13)
|
164
170
|
|
165
171
|
PLATFORMS
|
172
|
+
aarch64-linux
|
166
173
|
arm64-darwin-22
|
167
174
|
arm64-darwin-23
|
175
|
+
x86_64-darwin-22
|
168
176
|
x86_64-linux
|
169
177
|
|
170
178
|
DEPENDENCIES
|
data/README.md
CHANGED
@@ -36,7 +36,7 @@ table to track all migrations.
|
|
36
36
|
|
37
37
|
## Rails Support
|
38
38
|
|
39
|
-
Support Rails 6.1 through 7.
|
39
|
+
Support Rails 6.1 through 7.2
|
40
40
|
|
41
41
|
|
42
42
|
#### v1
|
@@ -163,12 +163,21 @@ Then, in the Engine's `db/data` folder, you can add data migrations and run them
|
|
163
163
|
Run tests for a specific version of Rails
|
164
164
|
|
165
165
|
```
|
166
|
-
|
166
|
+
|
167
167
|
bundle exec appraisal rails-6.1 rspec
|
168
168
|
bundle exec appraisal rails-7.0 rspec
|
169
169
|
bundle exec appraisal rails-7.1 rspec
|
170
|
+
bundle exec appraisal rails-7.2 rspec
|
170
171
|
```
|
171
172
|
|
173
|
+
## Releasing new version
|
174
|
+
|
175
|
+
1. Create a new tag, eg `git tag 9.4.1`
|
176
|
+
1. Go to https://github.com/ilyakatz/data-migrate/tags
|
177
|
+
1. Click "Create release" under 9.4.1
|
178
|
+
1. CLick "Generate release notes"
|
179
|
+
1. Click "Publish release"
|
180
|
+
|
172
181
|
## Thanks
|
173
182
|
|
174
183
|
[Andrew J Vargo](http://github.com/ajvargo) Andrew was the original creator and maintainer of this project!
|
@@ -1,67 +1,67 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
data_migrate (
|
4
|
+
data_migrate (11.0.0)
|
5
5
|
activerecord (>= 6.1)
|
6
6
|
railties (>= 6.1)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: http://rubygems.org/
|
10
10
|
specs:
|
11
|
-
actioncable (6.1.7.
|
12
|
-
actionpack (= 6.1.7.
|
13
|
-
activesupport (= 6.1.7.
|
11
|
+
actioncable (6.1.7.8)
|
12
|
+
actionpack (= 6.1.7.8)
|
13
|
+
activesupport (= 6.1.7.8)
|
14
14
|
nio4r (~> 2.0)
|
15
15
|
websocket-driver (>= 0.6.1)
|
16
|
-
actionmailbox (6.1.7.
|
17
|
-
actionpack (= 6.1.7.
|
18
|
-
activejob (= 6.1.7.
|
19
|
-
activerecord (= 6.1.7.
|
20
|
-
activestorage (= 6.1.7.
|
21
|
-
activesupport (= 6.1.7.
|
16
|
+
actionmailbox (6.1.7.8)
|
17
|
+
actionpack (= 6.1.7.8)
|
18
|
+
activejob (= 6.1.7.8)
|
19
|
+
activerecord (= 6.1.7.8)
|
20
|
+
activestorage (= 6.1.7.8)
|
21
|
+
activesupport (= 6.1.7.8)
|
22
22
|
mail (>= 2.7.1)
|
23
|
-
actionmailer (6.1.7.
|
24
|
-
actionpack (= 6.1.7.
|
25
|
-
actionview (= 6.1.7.
|
26
|
-
activejob (= 6.1.7.
|
27
|
-
activesupport (= 6.1.7.
|
23
|
+
actionmailer (6.1.7.8)
|
24
|
+
actionpack (= 6.1.7.8)
|
25
|
+
actionview (= 6.1.7.8)
|
26
|
+
activejob (= 6.1.7.8)
|
27
|
+
activesupport (= 6.1.7.8)
|
28
28
|
mail (~> 2.5, >= 2.5.4)
|
29
29
|
rails-dom-testing (~> 2.0)
|
30
|
-
actionpack (6.1.7.
|
31
|
-
actionview (= 6.1.7.
|
32
|
-
activesupport (= 6.1.7.
|
30
|
+
actionpack (6.1.7.8)
|
31
|
+
actionview (= 6.1.7.8)
|
32
|
+
activesupport (= 6.1.7.8)
|
33
33
|
rack (~> 2.0, >= 2.0.9)
|
34
34
|
rack-test (>= 0.6.3)
|
35
35
|
rails-dom-testing (~> 2.0)
|
36
36
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
37
|
-
actiontext (6.1.7.
|
38
|
-
actionpack (= 6.1.7.
|
39
|
-
activerecord (= 6.1.7.
|
40
|
-
activestorage (= 6.1.7.
|
41
|
-
activesupport (= 6.1.7.
|
37
|
+
actiontext (6.1.7.8)
|
38
|
+
actionpack (= 6.1.7.8)
|
39
|
+
activerecord (= 6.1.7.8)
|
40
|
+
activestorage (= 6.1.7.8)
|
41
|
+
activesupport (= 6.1.7.8)
|
42
42
|
nokogiri (>= 1.8.5)
|
43
|
-
actionview (6.1.7.
|
44
|
-
activesupport (= 6.1.7.
|
43
|
+
actionview (6.1.7.8)
|
44
|
+
activesupport (= 6.1.7.8)
|
45
45
|
builder (~> 3.1)
|
46
46
|
erubi (~> 1.4)
|
47
47
|
rails-dom-testing (~> 2.0)
|
48
48
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
49
|
-
activejob (6.1.7.
|
50
|
-
activesupport (= 6.1.7.
|
49
|
+
activejob (6.1.7.8)
|
50
|
+
activesupport (= 6.1.7.8)
|
51
51
|
globalid (>= 0.3.6)
|
52
|
-
activemodel (6.1.7.
|
53
|
-
activesupport (= 6.1.7.
|
54
|
-
activerecord (6.1.7.
|
55
|
-
activemodel (= 6.1.7.
|
56
|
-
activesupport (= 6.1.7.
|
57
|
-
activestorage (6.1.7.
|
58
|
-
actionpack (= 6.1.7.
|
59
|
-
activejob (= 6.1.7.
|
60
|
-
activerecord (= 6.1.7.
|
61
|
-
activesupport (= 6.1.7.
|
52
|
+
activemodel (6.1.7.8)
|
53
|
+
activesupport (= 6.1.7.8)
|
54
|
+
activerecord (6.1.7.8)
|
55
|
+
activemodel (= 6.1.7.8)
|
56
|
+
activesupport (= 6.1.7.8)
|
57
|
+
activestorage (6.1.7.8)
|
58
|
+
actionpack (= 6.1.7.8)
|
59
|
+
activejob (= 6.1.7.8)
|
60
|
+
activerecord (= 6.1.7.8)
|
61
|
+
activesupport (= 6.1.7.8)
|
62
62
|
marcel (~> 1.0)
|
63
63
|
mini_mime (>= 1.1.0)
|
64
|
-
activesupport (6.1.7.
|
64
|
+
activesupport (6.1.7.8)
|
65
65
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
66
66
|
i18n (>= 1.6, < 2)
|
67
67
|
minitest (>= 5.1)
|
@@ -72,17 +72,17 @@ GEM
|
|
72
72
|
rake
|
73
73
|
thor (>= 0.14.0)
|
74
74
|
ast (2.4.2)
|
75
|
-
builder (3.
|
75
|
+
builder (3.3.0)
|
76
76
|
childprocess (4.1.0)
|
77
77
|
coderay (1.1.3)
|
78
|
-
concurrent-ruby (1.
|
78
|
+
concurrent-ruby (1.3.4)
|
79
79
|
crass (1.0.6)
|
80
80
|
date (3.3.4)
|
81
81
|
diff-lcs (1.5.0)
|
82
|
-
erubi (1.
|
82
|
+
erubi (1.13.0)
|
83
83
|
globalid (1.2.1)
|
84
84
|
activesupport (>= 6.1)
|
85
|
-
i18n (1.14.
|
85
|
+
i18n (1.14.5)
|
86
86
|
concurrent-ruby (~> 1.0)
|
87
87
|
iniparse (1.5.0)
|
88
88
|
json (2.6.3)
|
@@ -94,23 +94,27 @@ GEM
|
|
94
94
|
net-imap
|
95
95
|
net-pop
|
96
96
|
net-smtp
|
97
|
-
marcel (1.0.
|
98
|
-
method_source (1.
|
97
|
+
marcel (1.0.4)
|
98
|
+
method_source (1.1.0)
|
99
99
|
mini_mime (1.1.5)
|
100
|
-
minitest (5.
|
101
|
-
net-imap (0.4.
|
100
|
+
minitest (5.25.1)
|
101
|
+
net-imap (0.4.14)
|
102
102
|
date
|
103
103
|
net-protocol
|
104
104
|
net-pop (0.1.2)
|
105
105
|
net-protocol
|
106
106
|
net-protocol (0.2.2)
|
107
107
|
timeout
|
108
|
-
net-smtp (0.
|
108
|
+
net-smtp (0.5.0)
|
109
109
|
net-protocol
|
110
|
-
nio4r (2.7.
|
111
|
-
nokogiri (1.16.
|
110
|
+
nio4r (2.7.3)
|
111
|
+
nokogiri (1.16.7-aarch64-linux)
|
112
112
|
racc (~> 1.4)
|
113
|
-
nokogiri (1.16.
|
113
|
+
nokogiri (1.16.7-arm64-darwin)
|
114
|
+
racc (~> 1.4)
|
115
|
+
nokogiri (1.16.7-x86_64-darwin)
|
116
|
+
racc (~> 1.4)
|
117
|
+
nokogiri (1.16.7-x86_64-linux)
|
114
118
|
racc (~> 1.4)
|
115
119
|
overcommit (0.60.0)
|
116
120
|
childprocess (>= 0.6.3, < 5)
|
@@ -123,24 +127,24 @@ GEM
|
|
123
127
|
pry (0.14.2)
|
124
128
|
coderay (~> 1.1)
|
125
129
|
method_source (~> 1.0)
|
126
|
-
racc (1.
|
127
|
-
rack (2.2.
|
130
|
+
racc (1.8.1)
|
131
|
+
rack (2.2.9)
|
128
132
|
rack-test (2.1.0)
|
129
133
|
rack (>= 1.3)
|
130
|
-
rails (6.1.7.
|
131
|
-
actioncable (= 6.1.7.
|
132
|
-
actionmailbox (= 6.1.7.
|
133
|
-
actionmailer (= 6.1.7.
|
134
|
-
actionpack (= 6.1.7.
|
135
|
-
actiontext (= 6.1.7.
|
136
|
-
actionview (= 6.1.7.
|
137
|
-
activejob (= 6.1.7.
|
138
|
-
activemodel (= 6.1.7.
|
139
|
-
activerecord (= 6.1.7.
|
140
|
-
activestorage (= 6.1.7.
|
141
|
-
activesupport (= 6.1.7.
|
134
|
+
rails (6.1.7.8)
|
135
|
+
actioncable (= 6.1.7.8)
|
136
|
+
actionmailbox (= 6.1.7.8)
|
137
|
+
actionmailer (= 6.1.7.8)
|
138
|
+
actionpack (= 6.1.7.8)
|
139
|
+
actiontext (= 6.1.7.8)
|
140
|
+
actionview (= 6.1.7.8)
|
141
|
+
activejob (= 6.1.7.8)
|
142
|
+
activemodel (= 6.1.7.8)
|
143
|
+
activerecord (= 6.1.7.8)
|
144
|
+
activestorage (= 6.1.7.8)
|
145
|
+
activesupport (= 6.1.7.8)
|
142
146
|
bundler (>= 1.15.0)
|
143
|
-
railties (= 6.1.7.
|
147
|
+
railties (= 6.1.7.8)
|
144
148
|
sprockets-rails (>= 2.0.0)
|
145
149
|
rails-dom-testing (2.2.0)
|
146
150
|
activesupport (>= 5.0.0)
|
@@ -149,14 +153,14 @@ GEM
|
|
149
153
|
rails-html-sanitizer (1.6.0)
|
150
154
|
loofah (~> 2.21)
|
151
155
|
nokogiri (~> 1.14)
|
152
|
-
railties (6.1.7.
|
153
|
-
actionpack (= 6.1.7.
|
154
|
-
activesupport (= 6.1.7.
|
156
|
+
railties (6.1.7.8)
|
157
|
+
actionpack (= 6.1.7.8)
|
158
|
+
activesupport (= 6.1.7.8)
|
155
159
|
method_source
|
156
160
|
rake (>= 12.2)
|
157
161
|
thor (~> 1.0)
|
158
162
|
rainbow (3.1.1)
|
159
|
-
rake (13.1
|
163
|
+
rake (13.2.1)
|
160
164
|
rb-readline (0.5.5)
|
161
165
|
regexp_parser (2.8.1)
|
162
166
|
rexml (3.2.5)
|
@@ -189,11 +193,13 @@ GEM
|
|
189
193
|
sprockets (4.2.1)
|
190
194
|
concurrent-ruby (~> 1.0)
|
191
195
|
rack (>= 2.2.4, < 4)
|
192
|
-
sprockets-rails (3.
|
193
|
-
actionpack (>=
|
194
|
-
activesupport (>=
|
196
|
+
sprockets-rails (3.5.2)
|
197
|
+
actionpack (>= 6.1)
|
198
|
+
activesupport (>= 6.1)
|
195
199
|
sprockets (>= 3.0.0)
|
200
|
+
sqlite3 (1.7.2-aarch64-linux)
|
196
201
|
sqlite3 (1.7.2-arm64-darwin)
|
202
|
+
sqlite3 (1.7.2-x86_64-darwin)
|
197
203
|
sqlite3 (1.7.2-x86_64-linux)
|
198
204
|
thor (1.3.1)
|
199
205
|
timecop (0.9.6)
|
@@ -204,11 +210,13 @@ GEM
|
|
204
210
|
websocket-driver (0.7.6)
|
205
211
|
websocket-extensions (>= 0.1.0)
|
206
212
|
websocket-extensions (0.1.5)
|
207
|
-
zeitwerk (2.6.
|
213
|
+
zeitwerk (2.6.17)
|
208
214
|
|
209
215
|
PLATFORMS
|
216
|
+
aarch64-linux
|
210
217
|
arm64-darwin-22
|
211
218
|
arm64-darwin-23
|
219
|
+
x86_64-darwin-22
|
212
220
|
x86_64-linux
|
213
221
|
|
214
222
|
DEPENDENCIES
|
@@ -1,74 +1,74 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
data_migrate (
|
4
|
+
data_migrate (11.0.0)
|
5
5
|
activerecord (>= 6.1)
|
6
6
|
railties (>= 6.1)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: http://rubygems.org/
|
10
10
|
specs:
|
11
|
-
actioncable (7.0.8.
|
12
|
-
actionpack (= 7.0.8.
|
13
|
-
activesupport (= 7.0.8.
|
11
|
+
actioncable (7.0.8.4)
|
12
|
+
actionpack (= 7.0.8.4)
|
13
|
+
activesupport (= 7.0.8.4)
|
14
14
|
nio4r (~> 2.0)
|
15
15
|
websocket-driver (>= 0.6.1)
|
16
|
-
actionmailbox (7.0.8.
|
17
|
-
actionpack (= 7.0.8.
|
18
|
-
activejob (= 7.0.8.
|
19
|
-
activerecord (= 7.0.8.
|
20
|
-
activestorage (= 7.0.8.
|
21
|
-
activesupport (= 7.0.8.
|
16
|
+
actionmailbox (7.0.8.4)
|
17
|
+
actionpack (= 7.0.8.4)
|
18
|
+
activejob (= 7.0.8.4)
|
19
|
+
activerecord (= 7.0.8.4)
|
20
|
+
activestorage (= 7.0.8.4)
|
21
|
+
activesupport (= 7.0.8.4)
|
22
22
|
mail (>= 2.7.1)
|
23
23
|
net-imap
|
24
24
|
net-pop
|
25
25
|
net-smtp
|
26
|
-
actionmailer (7.0.8.
|
27
|
-
actionpack (= 7.0.8.
|
28
|
-
actionview (= 7.0.8.
|
29
|
-
activejob (= 7.0.8.
|
30
|
-
activesupport (= 7.0.8.
|
26
|
+
actionmailer (7.0.8.4)
|
27
|
+
actionpack (= 7.0.8.4)
|
28
|
+
actionview (= 7.0.8.4)
|
29
|
+
activejob (= 7.0.8.4)
|
30
|
+
activesupport (= 7.0.8.4)
|
31
31
|
mail (~> 2.5, >= 2.5.4)
|
32
32
|
net-imap
|
33
33
|
net-pop
|
34
34
|
net-smtp
|
35
35
|
rails-dom-testing (~> 2.0)
|
36
|
-
actionpack (7.0.8.
|
37
|
-
actionview (= 7.0.8.
|
38
|
-
activesupport (= 7.0.8.
|
36
|
+
actionpack (7.0.8.4)
|
37
|
+
actionview (= 7.0.8.4)
|
38
|
+
activesupport (= 7.0.8.4)
|
39
39
|
rack (~> 2.0, >= 2.2.4)
|
40
40
|
rack-test (>= 0.6.3)
|
41
41
|
rails-dom-testing (~> 2.0)
|
42
42
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
43
|
-
actiontext (7.0.8.
|
44
|
-
actionpack (= 7.0.8.
|
45
|
-
activerecord (= 7.0.8.
|
46
|
-
activestorage (= 7.0.8.
|
47
|
-
activesupport (= 7.0.8.
|
43
|
+
actiontext (7.0.8.4)
|
44
|
+
actionpack (= 7.0.8.4)
|
45
|
+
activerecord (= 7.0.8.4)
|
46
|
+
activestorage (= 7.0.8.4)
|
47
|
+
activesupport (= 7.0.8.4)
|
48
48
|
globalid (>= 0.6.0)
|
49
49
|
nokogiri (>= 1.8.5)
|
50
|
-
actionview (7.0.8.
|
51
|
-
activesupport (= 7.0.8.
|
50
|
+
actionview (7.0.8.4)
|
51
|
+
activesupport (= 7.0.8.4)
|
52
52
|
builder (~> 3.1)
|
53
53
|
erubi (~> 1.4)
|
54
54
|
rails-dom-testing (~> 2.0)
|
55
55
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
56
|
-
activejob (7.0.8.
|
57
|
-
activesupport (= 7.0.8.
|
56
|
+
activejob (7.0.8.4)
|
57
|
+
activesupport (= 7.0.8.4)
|
58
58
|
globalid (>= 0.3.6)
|
59
|
-
activemodel (7.0.8.
|
60
|
-
activesupport (= 7.0.8.
|
61
|
-
activerecord (7.0.8.
|
62
|
-
activemodel (= 7.0.8.
|
63
|
-
activesupport (= 7.0.8.
|
64
|
-
activestorage (7.0.8.
|
65
|
-
actionpack (= 7.0.8.
|
66
|
-
activejob (= 7.0.8.
|
67
|
-
activerecord (= 7.0.8.
|
68
|
-
activesupport (= 7.0.8.
|
59
|
+
activemodel (7.0.8.4)
|
60
|
+
activesupport (= 7.0.8.4)
|
61
|
+
activerecord (7.0.8.4)
|
62
|
+
activemodel (= 7.0.8.4)
|
63
|
+
activesupport (= 7.0.8.4)
|
64
|
+
activestorage (7.0.8.4)
|
65
|
+
actionpack (= 7.0.8.4)
|
66
|
+
activejob (= 7.0.8.4)
|
67
|
+
activerecord (= 7.0.8.4)
|
68
|
+
activesupport (= 7.0.8.4)
|
69
69
|
marcel (~> 1.0)
|
70
70
|
mini_mime (>= 1.1.0)
|
71
|
-
activesupport (7.0.8.
|
71
|
+
activesupport (7.0.8.4)
|
72
72
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
73
73
|
i18n (>= 1.6, < 2)
|
74
74
|
minitest (>= 5.1)
|
@@ -78,17 +78,17 @@ GEM
|
|
78
78
|
rake
|
79
79
|
thor (>= 0.14.0)
|
80
80
|
ast (2.4.2)
|
81
|
-
builder (3.
|
81
|
+
builder (3.3.0)
|
82
82
|
childprocess (4.1.0)
|
83
83
|
coderay (1.1.3)
|
84
|
-
concurrent-ruby (1.
|
84
|
+
concurrent-ruby (1.3.4)
|
85
85
|
crass (1.0.6)
|
86
86
|
date (3.3.4)
|
87
87
|
diff-lcs (1.5.0)
|
88
|
-
erubi (1.
|
88
|
+
erubi (1.13.0)
|
89
89
|
globalid (1.2.1)
|
90
90
|
activesupport (>= 6.1)
|
91
|
-
i18n (1.14.
|
91
|
+
i18n (1.14.5)
|
92
92
|
concurrent-ruby (~> 1.0)
|
93
93
|
iniparse (1.5.0)
|
94
94
|
json (2.6.3)
|
@@ -101,23 +101,27 @@ GEM
|
|
101
101
|
net-imap
|
102
102
|
net-pop
|
103
103
|
net-smtp
|
104
|
-
marcel (1.0.
|
105
|
-
method_source (1.
|
104
|
+
marcel (1.0.4)
|
105
|
+
method_source (1.1.0)
|
106
106
|
mini_mime (1.1.5)
|
107
|
-
minitest (5.
|
108
|
-
net-imap (0.4.
|
107
|
+
minitest (5.25.1)
|
108
|
+
net-imap (0.4.14)
|
109
109
|
date
|
110
110
|
net-protocol
|
111
111
|
net-pop (0.1.2)
|
112
112
|
net-protocol
|
113
113
|
net-protocol (0.2.2)
|
114
114
|
timeout
|
115
|
-
net-smtp (0.
|
115
|
+
net-smtp (0.5.0)
|
116
116
|
net-protocol
|
117
|
-
nio4r (2.7.
|
118
|
-
nokogiri (1.16.
|
117
|
+
nio4r (2.7.3)
|
118
|
+
nokogiri (1.16.7-aarch64-linux)
|
119
119
|
racc (~> 1.4)
|
120
|
-
nokogiri (1.16.
|
120
|
+
nokogiri (1.16.7-arm64-darwin)
|
121
|
+
racc (~> 1.4)
|
122
|
+
nokogiri (1.16.7-x86_64-darwin)
|
123
|
+
racc (~> 1.4)
|
124
|
+
nokogiri (1.16.7-x86_64-linux)
|
121
125
|
racc (~> 1.4)
|
122
126
|
overcommit (0.60.0)
|
123
127
|
childprocess (>= 0.6.3, < 5)
|
@@ -130,24 +134,24 @@ GEM
|
|
130
134
|
pry (0.14.2)
|
131
135
|
coderay (~> 1.1)
|
132
136
|
method_source (~> 1.0)
|
133
|
-
racc (1.
|
134
|
-
rack (2.2.
|
137
|
+
racc (1.8.1)
|
138
|
+
rack (2.2.9)
|
135
139
|
rack-test (2.1.0)
|
136
140
|
rack (>= 1.3)
|
137
|
-
rails (7.0.8.
|
138
|
-
actioncable (= 7.0.8.
|
139
|
-
actionmailbox (= 7.0.8.
|
140
|
-
actionmailer (= 7.0.8.
|
141
|
-
actionpack (= 7.0.8.
|
142
|
-
actiontext (= 7.0.8.
|
143
|
-
actionview (= 7.0.8.
|
144
|
-
activejob (= 7.0.8.
|
145
|
-
activemodel (= 7.0.8.
|
146
|
-
activerecord (= 7.0.8.
|
147
|
-
activestorage (= 7.0.8.
|
148
|
-
activesupport (= 7.0.8.
|
141
|
+
rails (7.0.8.4)
|
142
|
+
actioncable (= 7.0.8.4)
|
143
|
+
actionmailbox (= 7.0.8.4)
|
144
|
+
actionmailer (= 7.0.8.4)
|
145
|
+
actionpack (= 7.0.8.4)
|
146
|
+
actiontext (= 7.0.8.4)
|
147
|
+
actionview (= 7.0.8.4)
|
148
|
+
activejob (= 7.0.8.4)
|
149
|
+
activemodel (= 7.0.8.4)
|
150
|
+
activerecord (= 7.0.8.4)
|
151
|
+
activestorage (= 7.0.8.4)
|
152
|
+
activesupport (= 7.0.8.4)
|
149
153
|
bundler (>= 1.15.0)
|
150
|
-
railties (= 7.0.8.
|
154
|
+
railties (= 7.0.8.4)
|
151
155
|
rails-dom-testing (2.2.0)
|
152
156
|
activesupport (>= 5.0.0)
|
153
157
|
minitest
|
@@ -155,15 +159,15 @@ GEM
|
|
155
159
|
rails-html-sanitizer (1.6.0)
|
156
160
|
loofah (~> 2.21)
|
157
161
|
nokogiri (~> 1.14)
|
158
|
-
railties (7.0.8.
|
159
|
-
actionpack (= 7.0.8.
|
160
|
-
activesupport (= 7.0.8.
|
162
|
+
railties (7.0.8.4)
|
163
|
+
actionpack (= 7.0.8.4)
|
164
|
+
activesupport (= 7.0.8.4)
|
161
165
|
method_source
|
162
166
|
rake (>= 12.2)
|
163
167
|
thor (~> 1.0)
|
164
168
|
zeitwerk (~> 2.5)
|
165
169
|
rainbow (3.1.1)
|
166
|
-
rake (13.1
|
170
|
+
rake (13.2.1)
|
167
171
|
rb-readline (0.5.5)
|
168
172
|
regexp_parser (2.8.1)
|
169
173
|
rexml (3.2.5)
|
@@ -194,7 +198,9 @@ GEM
|
|
194
198
|
rubocop-ast (1.29.0)
|
195
199
|
parser (>= 3.2.1.0)
|
196
200
|
ruby-progressbar (1.13.0)
|
201
|
+
sqlite3 (1.7.2-aarch64-linux)
|
197
202
|
sqlite3 (1.7.2-arm64-darwin)
|
203
|
+
sqlite3 (1.7.2-x86_64-darwin)
|
198
204
|
sqlite3 (1.7.2-x86_64-linux)
|
199
205
|
thor (1.3.1)
|
200
206
|
timecop (0.9.6)
|
@@ -205,11 +211,13 @@ GEM
|
|
205
211
|
websocket-driver (0.7.6)
|
206
212
|
websocket-extensions (>= 0.1.0)
|
207
213
|
websocket-extensions (0.1.5)
|
208
|
-
zeitwerk (2.6.
|
214
|
+
zeitwerk (2.6.17)
|
209
215
|
|
210
216
|
PLATFORMS
|
217
|
+
aarch64-linux
|
211
218
|
arm64-darwin-22
|
212
219
|
arm64-darwin-23
|
220
|
+
x86_64-darwin-22
|
213
221
|
x86_64-linux
|
214
222
|
|
215
223
|
DEPENDENCIES
|