data_migrate 10.0.3.rc → 11.0.0.rc
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 +4 -4
- data/.github/workflows/gempush.yml +6 -8
- data/.gitignore +0 -1
- data/Appraisals +10 -5
- data/Changelog.md +32 -6
- data/Gemfile +0 -1
- data/Gemfile.lock +188 -0
- data/README.md +13 -4
- data/data_migrate.gemspec +2 -2
- data/gemfiles/rails_6.1.gemfile +0 -1
- data/gemfiles/rails_6.1.gemfile.lock +233 -0
- data/gemfiles/rails_7.0.gemfile +1 -2
- data/gemfiles/rails_7.0.gemfile.lock +234 -0
- data/gemfiles/{rails_6.0.gemfile → rails_7.1.gemfile} +1 -2
- data/gemfiles/rails_7.1.gemfile.lock +266 -0
- data/gemfiles/rails_7.2.gemfile +7 -0
- data/gemfiles/rails_7.2.gemfile.lock +265 -0
- data/lib/data_migrate/data_migrator.rb +15 -23
- data/lib/data_migrate/data_schema.rb +2 -2
- data/lib/data_migrate/data_schema_migration.rb +24 -7
- data/lib/data_migrate/database_configurations_wrapper.rb +11 -0
- data/lib/data_migrate/database_tasks.rb +194 -48
- data/lib/data_migrate/migration_context.rb +11 -8
- data/lib/data_migrate/rails_helper.rb +90 -0
- data/lib/data_migrate/schema_dumper.rb +1 -1
- data/lib/data_migrate/schema_migration.rb +5 -4
- data/lib/data_migrate/status_service.rb +3 -3
- data/lib/data_migrate/tasks/data_migrate_tasks.rb +13 -14
- data/lib/data_migrate/test.rb +14 -0
- data/lib/data_migrate/version.rb +1 -1
- data/lib/data_migrate.rb +2 -1
- data/spec/data_migrate/data_migrator_spec.rb +17 -14
- data/spec/data_migrate/data_schema_migration_spec.rb +25 -8
- data/spec/data_migrate/data_spec.rb +1 -1
- data/spec/data_migrate/database_tasks_spec.rb +34 -19
- data/spec/data_migrate/migration_context_spec.rb +25 -9
- data/spec/data_migrate/schema_dumper_spec.rb +6 -3
- data/spec/data_migrate/schema_migration_spec.rb +13 -6
- data/spec/data_migrate/status_service_spec.rb +6 -3
- data/spec/data_migrate/tasks/data_migrate_tasks_spec.rb +13 -14
- data/spec/db/data/20091231235959_some_name.rb +1 -1
- data/spec/db/data/20171231235959_super_update.rb +1 -1
- data/spec/db/migrate/20131111111111_late_migration.rb +1 -1
- data/spec/db/migrate/20202020202011_db_migration.rb +1 -1
- data/tasks/databases.rake +25 -93
- metadata +21 -15
- data/Gemfile.rails6.1 +0 -11
- data/lib/data_migrate/legacy_migrator.rb +0 -22
- data/spec/data_migrate/legacy_migrator_spec.rb +0 -38
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 185a0888ccb82ee2eeb5315024707fb5917a9da92a692951ea0df1ffb9f8f550
|
4
|
+
data.tar.gz: 28b67173a6eb4a201c1c9bb7d2753f42715b459ab92901a708b68485a7338b78
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 925d15e79b0cb6d2cedddb691db6e0adc699b67eb1c744c3db98149ffd44024b87781017863e19a9982eb0e5874bc298473938fe8dc86e727a601cc6d9b00eee
|
7
|
+
data.tar.gz: 9695aeb945e467f00c1da4605642c8511a0f5048873288208ac4b396364fe6f00247b23460aa4175ac12e2a22f66e1376fa6111de2a84c7747a8f4a3d651a3b8
|
data/.github/workflows/build.yml
CHANGED
@@ -11,14 +11,14 @@ jobs:
|
|
11
11
|
matrix:
|
12
12
|
os: [ "ubuntu-20.04" ]
|
13
13
|
ruby:
|
14
|
-
- '2.7'
|
15
|
-
- '3.0'
|
16
14
|
- '3.1'
|
17
15
|
- '3.2'
|
16
|
+
- '3.3'
|
18
17
|
gemfile:
|
19
|
-
- gemfiles/rails_6.0.gemfile
|
20
18
|
- gemfiles/rails_6.1.gemfile
|
21
19
|
- gemfiles/rails_7.0.gemfile
|
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 }}
|
@@ -32,4 +32,4 @@ jobs:
|
|
32
32
|
ruby-version: ${{ matrix.ruby }}
|
33
33
|
bundler-cache: true
|
34
34
|
- name: Run tests
|
35
|
-
run: bundle exec rspec
|
35
|
+
run: bundle exec rspec
|
@@ -1,10 +1,8 @@
|
|
1
|
-
name:
|
1
|
+
name: Release Gem
|
2
2
|
|
3
3
|
on:
|
4
|
-
|
5
|
-
|
6
|
-
- main
|
7
|
-
- chaunce-multiple_connection_support
|
4
|
+
release:
|
5
|
+
types: [released]
|
8
6
|
|
9
7
|
jobs:
|
10
8
|
build:
|
@@ -13,10 +11,10 @@ jobs:
|
|
13
11
|
|
14
12
|
steps:
|
15
13
|
- uses: actions/checkout@master
|
16
|
-
- name: Set up Ruby 2
|
17
|
-
uses:
|
14
|
+
- name: Set up Ruby 3.2
|
15
|
+
uses: ruby/setup-ruby@v1
|
18
16
|
with:
|
19
|
-
version: 2
|
17
|
+
ruby-version: '3.2'
|
20
18
|
|
21
19
|
- name: Publish to RubyGems
|
22
20
|
run: |
|
data/.gitignore
CHANGED
data/Appraisals
CHANGED
@@ -1,11 +1,16 @@
|
|
1
|
-
appraise 'rails-6.0' do
|
2
|
-
gem 'rails', '~> 6.0.0'
|
3
|
-
end
|
4
|
-
|
5
1
|
appraise 'rails-6.1' do
|
6
2
|
gem 'rails', '~> 6.1.0'
|
7
3
|
end
|
8
4
|
|
9
5
|
appraise 'rails-7.0' do
|
10
|
-
gem 'rails', '~> 7.0'
|
6
|
+
gem 'rails', '~> 7.0.0'
|
7
|
+
end
|
8
|
+
|
9
|
+
appraise 'rails-7.1' do
|
10
|
+
gem 'rails', '7.1.0'
|
11
|
+
end
|
12
|
+
|
13
|
+
|
14
|
+
appraise 'rails-7.2' do
|
15
|
+
gem 'rails', '7.2.0.beta1'
|
11
16
|
end
|
data/Changelog.md
CHANGED
@@ -1,20 +1,47 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
-
|
3
|
+
# 11.0.0rc
|
4
|
+
- Remove Ruby 3.0 from build matrix
|
5
|
+
- Support Rails 7.2.0 https://github.com/ilyakatz/data-migrate/pull/312
|
6
|
+
- Update gemfile.lock builds
|
7
|
+
|
8
|
+
## 9.4.2
|
9
|
+
- Fix db:prepare:with_data task
|
10
|
+
|
11
|
+
## 9.4.1
|
12
|
+
- Add db:prepare task
|
13
|
+
|
14
|
+
## 9.4.0
|
15
|
+
- Reset model schema cache before each data migration https://github.com/ilyakatz/data-migrate/pull/307
|
16
|
+
- Run load_config rake task before db:migrate:with_data https://github.com/ilyakatz/data-migrate/pull/308
|
17
|
+
|
18
|
+
## 9.3.0
|
19
|
+
- Improve with_data Rake task for multiple database https://github.com/ilyakatz/data-migrate/pull/296
|
20
|
+
|
21
|
+
## 9.2.0
|
22
|
+
- Support Rails 7.1 https://github.com/ilyakatz/data-migrate/pull/278
|
23
|
+
- Build and test against 7.1.0.rc1 https://github.com/ilyakatz/data-migrate/pull/286
|
24
|
+
|
25
|
+
## 9.1.0
|
26
|
+
|
27
|
+
- Fix a bug that caused `schema_sha1` in `ar_internal_metadata` to be reset to the `data_schema.rb` file. (#272)
|
28
|
+
- Remove the need for empty data_schema files for non-primary databases. (#273)
|
29
|
+
|
30
|
+
## [YANKED] 10.0.3.rc
|
4
31
|
|
5
32
|
- Remove all travis references [leoarnold](https//:github.com/leoarnold)
|
6
33
|
- Changing to rc because of ongoing discussion how to properly handle multiple database environments
|
7
34
|
|
8
|
-
## 10.0.2
|
35
|
+
## [YANKED] 10.0.2
|
9
36
|
|
10
37
|
Change "rails" dependencies to "railties"
|
11
38
|
|
12
|
-
## 10.0.1
|
39
|
+
## [YANKED] 10.0.1
|
13
40
|
|
14
41
|
- Bug fix for Rails 6 config [chaunce](https//:github.com/chaunce)
|
15
42
|
- Railties bug fix by [opti](https://github.com/opti)
|
16
43
|
|
17
|
-
## 10.0.0
|
44
|
+
## [YANKED] 10.0.0
|
18
45
|
|
19
46
|
Releasing 10.0.0
|
20
47
|
|
@@ -23,14 +50,13 @@ Releasing 10.0.0
|
|
23
50
|
- This version introduces a breaking change which may lead to undesired
|
24
51
|
behavior in multi-database environments. See https://github.com/ilyakatz/data-migrate/issues/181
|
25
52
|
|
26
|
-
## 10.0.0.rc1
|
53
|
+
## [YANKED] 10.0.0.rc1
|
27
54
|
|
28
55
|
- Changes by [chaunce](https//:github.com/chaunce)
|
29
56
|
- Multiple databases support
|
30
57
|
- Refactor to clean things up
|
31
58
|
- Deprecate rails 5.2 support for real
|
32
59
|
|
33
|
-
|
34
60
|
## 9.0.0
|
35
61
|
|
36
62
|
Ruby 3.2 support [mehanoid](https://github.com/mehanoid)
|
data/Gemfile
CHANGED
data/Gemfile.lock
ADDED
@@ -0,0 +1,188 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
data_migrate (11.0.0.rc)
|
5
|
+
activerecord (>= 6.1)
|
6
|
+
railties (>= 6.1)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: http://rubygems.org/
|
10
|
+
specs:
|
11
|
+
actionpack (7.1.3.4)
|
12
|
+
actionview (= 7.1.3.4)
|
13
|
+
activesupport (= 7.1.3.4)
|
14
|
+
nokogiri (>= 1.8.5)
|
15
|
+
racc
|
16
|
+
rack (>= 2.2.4)
|
17
|
+
rack-session (>= 1.0.1)
|
18
|
+
rack-test (>= 0.6.3)
|
19
|
+
rails-dom-testing (~> 2.2)
|
20
|
+
rails-html-sanitizer (~> 1.6)
|
21
|
+
actionview (7.1.3.4)
|
22
|
+
activesupport (= 7.1.3.4)
|
23
|
+
builder (~> 3.1)
|
24
|
+
erubi (~> 1.11)
|
25
|
+
rails-dom-testing (~> 2.2)
|
26
|
+
rails-html-sanitizer (~> 1.6)
|
27
|
+
activemodel (7.1.3.4)
|
28
|
+
activesupport (= 7.1.3.4)
|
29
|
+
activerecord (7.1.3.4)
|
30
|
+
activemodel (= 7.1.3.4)
|
31
|
+
activesupport (= 7.1.3.4)
|
32
|
+
timeout (>= 0.4.0)
|
33
|
+
activesupport (7.1.3.4)
|
34
|
+
base64
|
35
|
+
bigdecimal
|
36
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
37
|
+
connection_pool (>= 2.2.5)
|
38
|
+
drb
|
39
|
+
i18n (>= 1.6, < 2)
|
40
|
+
minitest (>= 5.1)
|
41
|
+
mutex_m
|
42
|
+
tzinfo (~> 2.0)
|
43
|
+
appraisal (2.5.0)
|
44
|
+
bundler
|
45
|
+
rake
|
46
|
+
thor (>= 0.14.0)
|
47
|
+
ast (2.4.2)
|
48
|
+
base64 (0.2.0)
|
49
|
+
bigdecimal (3.1.8)
|
50
|
+
builder (3.2.4)
|
51
|
+
childprocess (5.0.0)
|
52
|
+
coderay (1.1.3)
|
53
|
+
concurrent-ruby (1.3.1)
|
54
|
+
connection_pool (2.4.1)
|
55
|
+
crass (1.0.6)
|
56
|
+
diff-lcs (1.5.1)
|
57
|
+
drb (2.2.1)
|
58
|
+
erubi (1.12.0)
|
59
|
+
i18n (1.14.5)
|
60
|
+
concurrent-ruby (~> 1.0)
|
61
|
+
iniparse (1.5.0)
|
62
|
+
io-console (0.7.2)
|
63
|
+
irb (1.11.2)
|
64
|
+
rdoc
|
65
|
+
reline (>= 0.4.2)
|
66
|
+
json (2.7.1)
|
67
|
+
language_server-protocol (3.17.0.3)
|
68
|
+
loofah (2.22.0)
|
69
|
+
crass (~> 1.0.2)
|
70
|
+
nokogiri (>= 1.12.0)
|
71
|
+
method_source (1.0.0)
|
72
|
+
minitest (5.23.1)
|
73
|
+
mutex_m (0.2.0)
|
74
|
+
nokogiri (1.16.2-aarch64-linux)
|
75
|
+
racc (~> 1.4)
|
76
|
+
nokogiri (1.16.2-arm64-darwin)
|
77
|
+
racc (~> 1.4)
|
78
|
+
nokogiri (1.16.2-x86_64-linux)
|
79
|
+
racc (~> 1.4)
|
80
|
+
overcommit (0.63.0)
|
81
|
+
childprocess (>= 0.6.3, < 6)
|
82
|
+
iniparse (~> 1.4)
|
83
|
+
rexml (~> 3.2)
|
84
|
+
parallel (1.24.0)
|
85
|
+
parser (3.3.0.5)
|
86
|
+
ast (~> 2.4.1)
|
87
|
+
racc
|
88
|
+
pry (0.14.2)
|
89
|
+
coderay (~> 1.1)
|
90
|
+
method_source (~> 1.0)
|
91
|
+
psych (5.1.2)
|
92
|
+
stringio
|
93
|
+
racc (1.8.0)
|
94
|
+
rack (3.0.11)
|
95
|
+
rack-session (2.0.0)
|
96
|
+
rack (>= 3.0.0)
|
97
|
+
rack-test (2.1.0)
|
98
|
+
rack (>= 1.3)
|
99
|
+
rackup (2.1.0)
|
100
|
+
rack (>= 3)
|
101
|
+
webrick (~> 1.8)
|
102
|
+
rails-dom-testing (2.2.0)
|
103
|
+
activesupport (>= 5.0.0)
|
104
|
+
minitest
|
105
|
+
nokogiri (>= 1.6)
|
106
|
+
rails-html-sanitizer (1.6.0)
|
107
|
+
loofah (~> 2.21)
|
108
|
+
nokogiri (~> 1.14)
|
109
|
+
railties (7.1.3.4)
|
110
|
+
actionpack (= 7.1.3.4)
|
111
|
+
activesupport (= 7.1.3.4)
|
112
|
+
irb
|
113
|
+
rackup (>= 1.0.0)
|
114
|
+
rake (>= 12.2)
|
115
|
+
thor (~> 1.0, >= 1.2.2)
|
116
|
+
zeitwerk (~> 2.6)
|
117
|
+
rainbow (3.1.1)
|
118
|
+
rake (13.1.0)
|
119
|
+
rb-readline (0.5.5)
|
120
|
+
rdoc (6.6.3.1)
|
121
|
+
psych (>= 4.0.0)
|
122
|
+
regexp_parser (2.9.0)
|
123
|
+
reline (0.4.3)
|
124
|
+
io-console (~> 0.5)
|
125
|
+
rexml (3.3.3)
|
126
|
+
strscan
|
127
|
+
rspec (3.13.0)
|
128
|
+
rspec-core (~> 3.13.0)
|
129
|
+
rspec-expectations (~> 3.13.0)
|
130
|
+
rspec-mocks (~> 3.13.0)
|
131
|
+
rspec-core (3.13.0)
|
132
|
+
rspec-support (~> 3.13.0)
|
133
|
+
rspec-expectations (3.13.0)
|
134
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
135
|
+
rspec-support (~> 3.13.0)
|
136
|
+
rspec-mocks (3.13.0)
|
137
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
138
|
+
rspec-support (~> 3.13.0)
|
139
|
+
rspec-support (3.13.1)
|
140
|
+
rubocop (1.60.2)
|
141
|
+
json (~> 2.3)
|
142
|
+
language_server-protocol (>= 3.17.0)
|
143
|
+
parallel (~> 1.10)
|
144
|
+
parser (>= 3.3.0.2)
|
145
|
+
rainbow (>= 2.2.2, < 4.0)
|
146
|
+
regexp_parser (>= 1.8, < 3.0)
|
147
|
+
rexml (>= 3.2.5, < 4.0)
|
148
|
+
rubocop-ast (>= 1.30.0, < 2.0)
|
149
|
+
ruby-progressbar (~> 1.7)
|
150
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
151
|
+
rubocop-ast (1.30.0)
|
152
|
+
parser (>= 3.2.1.0)
|
153
|
+
ruby-progressbar (1.13.0)
|
154
|
+
sqlite3 (1.7.2-aarch64-linux)
|
155
|
+
sqlite3 (1.7.2-arm64-darwin)
|
156
|
+
sqlite3 (1.7.2-x86_64-linux)
|
157
|
+
stringio (3.1.0)
|
158
|
+
strscan (3.1.0)
|
159
|
+
thor (1.3.1)
|
160
|
+
timecop (0.9.8)
|
161
|
+
timeout (0.4.1)
|
162
|
+
tzinfo (2.0.6)
|
163
|
+
concurrent-ruby (~> 1.0)
|
164
|
+
unicode-display_width (2.5.0)
|
165
|
+
webrick (1.8.1)
|
166
|
+
zeitwerk (2.6.13)
|
167
|
+
|
168
|
+
PLATFORMS
|
169
|
+
aarch64-linux
|
170
|
+
arm64-darwin-22
|
171
|
+
arm64-darwin-23
|
172
|
+
x86_64-linux
|
173
|
+
|
174
|
+
DEPENDENCIES
|
175
|
+
appraisal
|
176
|
+
data_migrate!
|
177
|
+
overcommit
|
178
|
+
pry
|
179
|
+
rake
|
180
|
+
rb-readline
|
181
|
+
rspec
|
182
|
+
rspec-core
|
183
|
+
rubocop
|
184
|
+
sqlite3
|
185
|
+
timecop
|
186
|
+
|
187
|
+
BUNDLED WITH
|
188
|
+
2.4.17
|
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.
|
39
|
+
Support Rails 6.1 through 7.2
|
40
40
|
|
41
41
|
|
42
42
|
#### v1
|
@@ -92,7 +92,7 @@ You can generate a data migration as you would a schema migration:
|
|
92
92
|
rake db:version:with_data # Retrieves the current schema version numbers for data and schema migrations
|
93
93
|
|
94
94
|
|
95
|
-
Tasks work as they would with the 'vanilla' db version. The 'with_data' addition to the 'db' tasks will run the task in the context of both the data and schema migrations. That is, rake db:rollback:with_data will check to see if it was a schema or data migration invoked last, and do that. Tasks invoked in that space also have an additional line of output, indicating if the action is performed on data or schema.
|
95
|
+
Tasks work as they would with the 'vanilla' db version. The 'with_data' addition to the 'db' tasks will run the task in the context of both the data and schema migrations. That is, rake db:rollback:with_data will check to see if it was a schema or data migration invoked last, and do that. Tasks invoked in that space also have an additional line of output, indicating if the action is performed on data or schema.
|
96
96
|
|
97
97
|
With 'up' and 'down', you can specify the option 'BOTH', which defaults to false. Using true, will migrate both the data and schema (in the desired direction) if they both match the version provided. Again, going up, schema is given precedence. Down its data.
|
98
98
|
|
@@ -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
|
-
|
167
|
-
bundle exec appraisal rails-6.0 rspec
|
166
|
+
|
168
167
|
bundle exec appraisal rails-6.1 rspec
|
169
168
|
bundle exec appraisal rails-7.0 rspec
|
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!
|
data/data_migrate.gemspec
CHANGED
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
|
|
19
19
|
activerecord
|
20
20
|
railties
|
21
21
|
].each do |rails_gem|
|
22
|
-
s.add_dependency(rails_gem, '>= 6.
|
22
|
+
s.add_dependency(rails_gem, '>= 6.1')
|
23
23
|
end
|
24
24
|
|
25
25
|
s.add_development_dependency "appraisal"
|
@@ -28,7 +28,7 @@ Gem::Specification.new do |s|
|
|
28
28
|
s.add_development_dependency "rspec-core"
|
29
29
|
s.add_development_dependency "pry"
|
30
30
|
s.add_development_dependency "rb-readline"
|
31
|
-
s.add_development_dependency "sqlite3"
|
31
|
+
s.add_development_dependency "sqlite3"
|
32
32
|
s.add_development_dependency "timecop"
|
33
33
|
s.add_development_dependency "rubocop"
|
34
34
|
s.add_development_dependency "overcommit"
|
data/gemfiles/rails_6.1.gemfile
CHANGED
@@ -0,0 +1,233 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
data_migrate (11.0.0.rc)
|
5
|
+
activerecord (>= 6.1)
|
6
|
+
railties (>= 6.1)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: http://rubygems.org/
|
10
|
+
specs:
|
11
|
+
actioncable (6.1.7.8)
|
12
|
+
actionpack (= 6.1.7.8)
|
13
|
+
activesupport (= 6.1.7.8)
|
14
|
+
nio4r (~> 2.0)
|
15
|
+
websocket-driver (>= 0.6.1)
|
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
|
+
mail (>= 2.7.1)
|
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
|
+
mail (~> 2.5, >= 2.5.4)
|
29
|
+
rails-dom-testing (~> 2.0)
|
30
|
+
actionpack (6.1.7.8)
|
31
|
+
actionview (= 6.1.7.8)
|
32
|
+
activesupport (= 6.1.7.8)
|
33
|
+
rack (~> 2.0, >= 2.0.9)
|
34
|
+
rack-test (>= 0.6.3)
|
35
|
+
rails-dom-testing (~> 2.0)
|
36
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
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
|
+
nokogiri (>= 1.8.5)
|
43
|
+
actionview (6.1.7.8)
|
44
|
+
activesupport (= 6.1.7.8)
|
45
|
+
builder (~> 3.1)
|
46
|
+
erubi (~> 1.4)
|
47
|
+
rails-dom-testing (~> 2.0)
|
48
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
49
|
+
activejob (6.1.7.8)
|
50
|
+
activesupport (= 6.1.7.8)
|
51
|
+
globalid (>= 0.3.6)
|
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
|
+
marcel (~> 1.0)
|
63
|
+
mini_mime (>= 1.1.0)
|
64
|
+
activesupport (6.1.7.8)
|
65
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
66
|
+
i18n (>= 1.6, < 2)
|
67
|
+
minitest (>= 5.1)
|
68
|
+
tzinfo (~> 2.0)
|
69
|
+
zeitwerk (~> 2.3)
|
70
|
+
appraisal (2.4.1)
|
71
|
+
bundler
|
72
|
+
rake
|
73
|
+
thor (>= 0.14.0)
|
74
|
+
ast (2.4.2)
|
75
|
+
builder (3.3.0)
|
76
|
+
childprocess (4.1.0)
|
77
|
+
coderay (1.1.3)
|
78
|
+
concurrent-ruby (1.3.4)
|
79
|
+
crass (1.0.6)
|
80
|
+
date (3.3.4)
|
81
|
+
diff-lcs (1.5.0)
|
82
|
+
erubi (1.13.0)
|
83
|
+
globalid (1.2.1)
|
84
|
+
activesupport (>= 6.1)
|
85
|
+
i18n (1.14.5)
|
86
|
+
concurrent-ruby (~> 1.0)
|
87
|
+
iniparse (1.5.0)
|
88
|
+
json (2.6.3)
|
89
|
+
loofah (2.22.0)
|
90
|
+
crass (~> 1.0.2)
|
91
|
+
nokogiri (>= 1.12.0)
|
92
|
+
mail (2.8.1)
|
93
|
+
mini_mime (>= 0.1.1)
|
94
|
+
net-imap
|
95
|
+
net-pop
|
96
|
+
net-smtp
|
97
|
+
marcel (1.0.4)
|
98
|
+
method_source (1.1.0)
|
99
|
+
mini_mime (1.1.5)
|
100
|
+
minitest (5.25.1)
|
101
|
+
net-imap (0.4.14)
|
102
|
+
date
|
103
|
+
net-protocol
|
104
|
+
net-pop (0.1.2)
|
105
|
+
net-protocol
|
106
|
+
net-protocol (0.2.2)
|
107
|
+
timeout
|
108
|
+
net-smtp (0.5.0)
|
109
|
+
net-protocol
|
110
|
+
nio4r (2.7.3)
|
111
|
+
nokogiri (1.16.7-aarch64-linux)
|
112
|
+
racc (~> 1.4)
|
113
|
+
nokogiri (1.16.7-arm64-darwin)
|
114
|
+
racc (~> 1.4)
|
115
|
+
nokogiri (1.16.7-x86_64-linux)
|
116
|
+
racc (~> 1.4)
|
117
|
+
overcommit (0.60.0)
|
118
|
+
childprocess (>= 0.6.3, < 5)
|
119
|
+
iniparse (~> 1.4)
|
120
|
+
rexml (~> 3.2)
|
121
|
+
parallel (1.23.0)
|
122
|
+
parser (3.2.2.3)
|
123
|
+
ast (~> 2.4.1)
|
124
|
+
racc
|
125
|
+
pry (0.14.2)
|
126
|
+
coderay (~> 1.1)
|
127
|
+
method_source (~> 1.0)
|
128
|
+
racc (1.8.1)
|
129
|
+
rack (2.2.9)
|
130
|
+
rack-test (2.1.0)
|
131
|
+
rack (>= 1.3)
|
132
|
+
rails (6.1.7.8)
|
133
|
+
actioncable (= 6.1.7.8)
|
134
|
+
actionmailbox (= 6.1.7.8)
|
135
|
+
actionmailer (= 6.1.7.8)
|
136
|
+
actionpack (= 6.1.7.8)
|
137
|
+
actiontext (= 6.1.7.8)
|
138
|
+
actionview (= 6.1.7.8)
|
139
|
+
activejob (= 6.1.7.8)
|
140
|
+
activemodel (= 6.1.7.8)
|
141
|
+
activerecord (= 6.1.7.8)
|
142
|
+
activestorage (= 6.1.7.8)
|
143
|
+
activesupport (= 6.1.7.8)
|
144
|
+
bundler (>= 1.15.0)
|
145
|
+
railties (= 6.1.7.8)
|
146
|
+
sprockets-rails (>= 2.0.0)
|
147
|
+
rails-dom-testing (2.2.0)
|
148
|
+
activesupport (>= 5.0.0)
|
149
|
+
minitest
|
150
|
+
nokogiri (>= 1.6)
|
151
|
+
rails-html-sanitizer (1.6.0)
|
152
|
+
loofah (~> 2.21)
|
153
|
+
nokogiri (~> 1.14)
|
154
|
+
railties (6.1.7.8)
|
155
|
+
actionpack (= 6.1.7.8)
|
156
|
+
activesupport (= 6.1.7.8)
|
157
|
+
method_source
|
158
|
+
rake (>= 12.2)
|
159
|
+
thor (~> 1.0)
|
160
|
+
rainbow (3.1.1)
|
161
|
+
rake (13.2.1)
|
162
|
+
rb-readline (0.5.5)
|
163
|
+
regexp_parser (2.8.1)
|
164
|
+
rexml (3.2.5)
|
165
|
+
rspec (3.12.0)
|
166
|
+
rspec-core (~> 3.12.0)
|
167
|
+
rspec-expectations (~> 3.12.0)
|
168
|
+
rspec-mocks (~> 3.12.0)
|
169
|
+
rspec-core (3.12.2)
|
170
|
+
rspec-support (~> 3.12.0)
|
171
|
+
rspec-expectations (3.12.3)
|
172
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
173
|
+
rspec-support (~> 3.12.0)
|
174
|
+
rspec-mocks (3.12.5)
|
175
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
176
|
+
rspec-support (~> 3.12.0)
|
177
|
+
rspec-support (3.12.0)
|
178
|
+
rubocop (1.52.1)
|
179
|
+
json (~> 2.3)
|
180
|
+
parallel (~> 1.10)
|
181
|
+
parser (>= 3.2.2.3)
|
182
|
+
rainbow (>= 2.2.2, < 4.0)
|
183
|
+
regexp_parser (>= 1.8, < 3.0)
|
184
|
+
rexml (>= 3.2.5, < 4.0)
|
185
|
+
rubocop-ast (>= 1.28.0, < 2.0)
|
186
|
+
ruby-progressbar (~> 1.7)
|
187
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
188
|
+
rubocop-ast (1.29.0)
|
189
|
+
parser (>= 3.2.1.0)
|
190
|
+
ruby-progressbar (1.13.0)
|
191
|
+
sprockets (4.2.1)
|
192
|
+
concurrent-ruby (~> 1.0)
|
193
|
+
rack (>= 2.2.4, < 4)
|
194
|
+
sprockets-rails (3.5.2)
|
195
|
+
actionpack (>= 6.1)
|
196
|
+
activesupport (>= 6.1)
|
197
|
+
sprockets (>= 3.0.0)
|
198
|
+
sqlite3 (1.7.2-aarch64-linux)
|
199
|
+
sqlite3 (1.7.2-arm64-darwin)
|
200
|
+
sqlite3 (1.7.2-x86_64-linux)
|
201
|
+
thor (1.3.1)
|
202
|
+
timecop (0.9.6)
|
203
|
+
timeout (0.4.1)
|
204
|
+
tzinfo (2.0.6)
|
205
|
+
concurrent-ruby (~> 1.0)
|
206
|
+
unicode-display_width (2.4.2)
|
207
|
+
websocket-driver (0.7.6)
|
208
|
+
websocket-extensions (>= 0.1.0)
|
209
|
+
websocket-extensions (0.1.5)
|
210
|
+
zeitwerk (2.6.17)
|
211
|
+
|
212
|
+
PLATFORMS
|
213
|
+
aarch64-linux
|
214
|
+
arm64-darwin-22
|
215
|
+
arm64-darwin-23
|
216
|
+
x86_64-linux
|
217
|
+
|
218
|
+
DEPENDENCIES
|
219
|
+
appraisal
|
220
|
+
data_migrate!
|
221
|
+
overcommit
|
222
|
+
pry
|
223
|
+
rails (~> 6.1.0)
|
224
|
+
rake
|
225
|
+
rb-readline
|
226
|
+
rspec
|
227
|
+
rspec-core
|
228
|
+
rubocop
|
229
|
+
sqlite3
|
230
|
+
timecop
|
231
|
+
|
232
|
+
BUNDLED WITH
|
233
|
+
2.5.6
|