data_migrate 8.5.0 → 9.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (59) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/build.yml +34 -0
  3. data/.github/workflows/gempush.yml +6 -7
  4. data/.gitignore +3 -2
  5. data/Appraisals +5 -9
  6. data/Changelog.md +44 -0
  7. data/Gemfile.lock +148 -0
  8. data/README.md +9 -7
  9. data/data_migrate.gemspec +1 -10
  10. data/gemfiles/rails_6.1.gemfile +1 -1
  11. data/gemfiles/rails_6.1.gemfile.lock +227 -0
  12. data/gemfiles/rails_7.0.gemfile.lock +229 -0
  13. data/gemfiles/{rails_6.0.gemfile → rails_7.1.gemfile} +1 -1
  14. data/gemfiles/rails_7.1.gemfile.lock +262 -0
  15. data/lib/data_migrate/config.rb +1 -1
  16. data/lib/data_migrate/{data_migrator_five.rb → data_migrator.rb} +11 -34
  17. data/lib/data_migrate/data_schema.rb +2 -2
  18. data/lib/data_migrate/data_schema_migration.rb +24 -7
  19. data/lib/data_migrate/database_tasks.rb +37 -74
  20. data/lib/data_migrate/migration_context.rb +11 -8
  21. data/lib/data_migrate/rails_helper.rb +79 -0
  22. data/lib/data_migrate/schema_dumper.rb +1 -1
  23. data/lib/data_migrate/{schema_migration_six.rb → schema_migration.rb} +7 -4
  24. data/lib/data_migrate/{status_service_five.rb → status_service.rb} +14 -8
  25. data/lib/data_migrate/tasks/data_migrate_tasks.rb +16 -37
  26. data/lib/data_migrate/version.rb +1 -1
  27. data/lib/data_migrate.rb +4 -9
  28. data/spec/data_migrate/config_spec.rb +13 -10
  29. data/spec/data_migrate/data_migrator_spec.rb +25 -43
  30. data/spec/data_migrate/data_schema_migration_spec.rb +25 -8
  31. data/spec/data_migrate/data_spec.rb +1 -12
  32. data/spec/data_migrate/database_tasks_spec.rb +43 -76
  33. data/spec/data_migrate/migration.rb +11 -13
  34. data/spec/data_migrate/migration_context_spec.rb +20 -39
  35. data/spec/data_migrate/schema_dumper_spec.rb +11 -21
  36. data/spec/data_migrate/schema_migration_spec.rb +46 -41
  37. data/spec/data_migrate/status_service_spec.rb +29 -55
  38. data/spec/data_migrate/tasks/data_migrate_tasks_spec.rb +32 -67
  39. data/spec/db/data/20091231235959_some_name.rb +1 -1
  40. data/spec/db/data/20171231235959_super_update.rb +1 -1
  41. data/spec/db/migrate/{5.2/20131111111111_late_migration.rb → 20131111111111_late_migration.rb} +1 -1
  42. data/spec/db/migrate/{6.0/20202020202011_db_migration.rb → 20202020202011_db_migration.rb} +1 -1
  43. data/spec/spec_helper.rb +2 -8
  44. data/tasks/databases.rake +15 -13
  45. metadata +20 -34
  46. data/.ruby-version +0 -1
  47. data/.travis.yml +0 -14
  48. data/Gemfile.rails5.2 +0 -10
  49. data/gemfiles/rails_5.2.gemfile +0 -8
  50. data/lib/data_migrate/legacy_migrator.rb +0 -22
  51. data/lib/data_migrate/schema_migration_five.rb +0 -31
  52. data/spec/data_migrate/legacy_migrator_spec.rb +0 -50
  53. data/spec/db/6.0/20091231235959_some_name.rb +0 -9
  54. data/spec/db/6.0/20171231235959_super_update.rb +0 -9
  55. data/spec/db/data-6.0/20091231235959_some_name.rb +0 -9
  56. data/spec/db/data-6.0/20171231235959_super_update.rb +0 -9
  57. data/spec/db/data-6.0/20181128000207_excluded_file.rb.other_ext +0 -1
  58. data/spec/db/migrate/5.2/20202020202011_db_migration.rb +0 -9
  59. data/spec/db/migrate/6.0/20131111111111_late_migration.rb +0 -9
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c0ed214d2b242e9802276616e52abc79dc40081b413f6c38cdcbc5414d5897e9
4
- data.tar.gz: f4045cba836825fa34a0da775d38999ea472f2fb8624537e8ffc216f01204e85
3
+ metadata.gz: 98382ecfcd0ad635d3e53bb746f4b2a7a402c2b2a78d312e864bbe6f288b65b1
4
+ data.tar.gz: 315d89e1465e7f5a804d4e70d67963949608632b91b7276ea23319f2183789ba
5
5
  SHA512:
6
- metadata.gz: c98becc1b27f1afc98a8e45c4c81ea35195a992f2ff7433d8891b542cc05063dde7ffd1655ba521e14e700e477acc23345b15a893e2a900c508fc0b72c69302c
7
- data.tar.gz: 04560cc96cf6696b032b7a9d6892d70b772801b62910899ea2c360d7a17b98e8ab58bcd535e9a1fbdd40aa07c8633e92f5f52db8f9a6340c00788919eb5acf5b
6
+ metadata.gz: '04098142838de3bb59be85adc46a9a4aed734668a154378488c74ea2a1982793a45450364f089edb479add87cab1b47e801916553c01ad003bbe71c0ba06b855'
7
+ data.tar.gz: 4654fdfb138a53c5cc4ff59df1d63bc66ccd0f66d292f79c0d37ccbdb43c184144d5122718e9027ea643f1e0786d79844aee44d70feb5a1c455a59670286e5ef
@@ -0,0 +1,34 @@
1
+ name: CI
2
+
3
+ on:
4
+ - push
5
+ - pull_request
6
+
7
+ jobs:
8
+ test:
9
+ strategy:
10
+ fail-fast: false
11
+ matrix:
12
+ os: [ "ubuntu-20.04" ]
13
+ ruby:
14
+ - '3.0'
15
+ - '3.1'
16
+ - '3.2'
17
+ gemfile:
18
+ - gemfiles/rails_6.1.gemfile
19
+ - gemfiles/rails_7.0.gemfile
20
+ - gemfiles/rails_7.1.gemfile
21
+ runs-on: ubuntu-latest
22
+ env:
23
+ BUNDLE_GEMFILE: ${{ matrix.gemfile }}
24
+ RAILS_ENV: test
25
+ steps:
26
+ - name: Checkout code
27
+ uses: actions/checkout@v3
28
+ - name: Set up Ruby
29
+ uses: ruby/setup-ruby@v1
30
+ with:
31
+ ruby-version: ${{ matrix.ruby }}
32
+ bundler-cache: true
33
+ - name: Run tests
34
+ run: bundle exec rspec
@@ -1,9 +1,8 @@
1
- name: Ruby Gem
1
+ name: Release Gem
2
2
 
3
3
  on:
4
- push:
5
- branches:
6
- - main
4
+ release:
5
+ types: [released]
7
6
 
8
7
  jobs:
9
8
  build:
@@ -12,10 +11,10 @@ jobs:
12
11
 
13
12
  steps:
14
13
  - uses: actions/checkout@master
15
- - name: Set up Ruby 2.6
16
- uses: actions/setup-ruby@v1
14
+ - name: Set up Ruby 3.2
15
+ uses: ruby/setup-ruby@v1
17
16
  with:
18
- version: 2.6.x
17
+ ruby-version: '3.2'
19
18
 
20
19
  - name: Publish to RubyGems
21
20
  run: |
data/.gitignore CHANGED
@@ -1,11 +1,12 @@
1
1
  /.rvmrc
2
2
  *.gem
3
- *.lock
4
3
  gemfiles/.bundle
5
4
  spec/db/test.db
6
5
  spec/db/other_test.db
7
6
  spec/db/data_schema.rb
8
7
  .vscode/
9
8
  .DS_Store
9
+ .ruby-gemset
10
+ .ruby-version
10
11
  .idea/
11
- vendor/
12
+ vendor/
data/Appraisals CHANGED
@@ -1,15 +1,11 @@
1
- appraise 'rails-5.2' do
2
- gem 'rails', '~> 5.2.3'
3
- end
4
-
5
- appraise 'rails-6.0' do
6
- gem 'rails', '~> 6.0.0'
7
- end
8
-
9
1
  appraise 'rails-6.1' do
10
2
  gem 'rails', '~> 6.1.0'
11
3
  end
12
4
 
13
5
  appraise 'rails-7.0' do
14
- 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'
15
11
  end
data/Changelog.md CHANGED
@@ -1,5 +1,49 @@
1
1
  # Changelog
2
2
 
3
+ ## 9.2.0
4
+ - Support Rails 7.1 https://github.com/ilyakatz/data-migrate/pull/278
5
+ - Build and test against 7.1.0.rc1 https://github.com/ilyakatz/data-migrate/pull/286
6
+
7
+ ## 9.1.0
8
+
9
+ - Fix a bug that caused `schema_sha1` in `ar_internal_metadata` to be reset to the `data_schema.rb` file. (#272)
10
+ - Remove the need for empty data_schema files for non-primary databases. (#273)
11
+
12
+ ## [YANKED] 10.0.3.rc
13
+
14
+ - Remove all travis references [leoarnold](https//:github.com/leoarnold)
15
+ - Changing to rc because of ongoing discussion how to properly handle multiple database environments
16
+
17
+ ## [YANKED] 10.0.2
18
+
19
+ Change "rails" dependencies to "railties"
20
+
21
+ ## [YANKED] 10.0.1
22
+
23
+ - Bug fix for Rails 6 config [chaunce](https//:github.com/chaunce)
24
+ - Railties bug fix by [opti](https://github.com/opti)
25
+
26
+ ## [YANKED] 10.0.0
27
+
28
+ Releasing 10.0.0
29
+
30
+ !!! Breaking changes !!!
31
+
32
+ - This version introduces a breaking change which may lead to undesired
33
+ behavior in multi-database environments. See https://github.com/ilyakatz/data-migrate/issues/181
34
+
35
+ ## [YANKED] 10.0.0.rc1
36
+
37
+ - Changes by [chaunce](https//:github.com/chaunce)
38
+ - Multiple databases support
39
+ - Refactor to clean things up
40
+ - Deprecate rails 5.2 support for real
41
+
42
+ ## 9.0.0
43
+
44
+ Ruby 3.2 support [mehanoid](https://github.com/mehanoid)
45
+ Rails 5.2 is no longer supported
46
+
3
47
  ## 8.5.0
4
48
 
5
49
  Allow custom templates [bazay](https://github.com/bazay)
data/Gemfile.lock ADDED
@@ -0,0 +1,148 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ data_migrate (9.2.0)
5
+ activerecord (>= 6.1)
6
+ railties (>= 6.1)
7
+
8
+ GEM
9
+ remote: http://rubygems.org/
10
+ specs:
11
+ actionpack (7.0.7.2)
12
+ actionview (= 7.0.7.2)
13
+ activesupport (= 7.0.7.2)
14
+ rack (~> 2.0, >= 2.2.4)
15
+ rack-test (>= 0.6.3)
16
+ rails-dom-testing (~> 2.0)
17
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
18
+ actionview (7.0.7.2)
19
+ activesupport (= 7.0.7.2)
20
+ builder (~> 3.1)
21
+ erubi (~> 1.4)
22
+ rails-dom-testing (~> 2.0)
23
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
24
+ activemodel (7.0.7.2)
25
+ activesupport (= 7.0.7.2)
26
+ activerecord (7.0.7.2)
27
+ activemodel (= 7.0.7.2)
28
+ activesupport (= 7.0.7.2)
29
+ activesupport (7.0.7.2)
30
+ concurrent-ruby (~> 1.0, >= 1.0.2)
31
+ i18n (>= 1.6, < 2)
32
+ minitest (>= 5.1)
33
+ tzinfo (~> 2.0)
34
+ appraisal (2.5.0)
35
+ bundler
36
+ rake
37
+ thor (>= 0.14.0)
38
+ ast (2.4.2)
39
+ builder (3.2.4)
40
+ childprocess (4.1.0)
41
+ coderay (1.1.3)
42
+ concurrent-ruby (1.2.2)
43
+ crass (1.0.6)
44
+ diff-lcs (1.5.0)
45
+ erubi (1.12.0)
46
+ i18n (1.14.1)
47
+ concurrent-ruby (~> 1.0)
48
+ iniparse (1.5.0)
49
+ json (2.6.3)
50
+ language_server-protocol (3.17.0.3)
51
+ loofah (2.21.3)
52
+ crass (~> 1.0.2)
53
+ nokogiri (>= 1.12.0)
54
+ method_source (1.0.0)
55
+ minitest (5.19.0)
56
+ nokogiri (1.15.3-arm64-darwin)
57
+ racc (~> 1.4)
58
+ nokogiri (1.15.3-x86_64-linux)
59
+ racc (~> 1.4)
60
+ overcommit (0.60.0)
61
+ childprocess (>= 0.6.3, < 5)
62
+ iniparse (~> 1.4)
63
+ rexml (~> 3.2)
64
+ parallel (1.23.0)
65
+ parser (3.2.2.3)
66
+ ast (~> 2.4.1)
67
+ racc
68
+ pry (0.14.2)
69
+ coderay (~> 1.1)
70
+ method_source (~> 1.0)
71
+ racc (1.7.1)
72
+ rack (2.2.7)
73
+ rack-test (2.1.0)
74
+ rack (>= 1.3)
75
+ rails-dom-testing (2.1.1)
76
+ activesupport (>= 5.0.0)
77
+ minitest
78
+ nokogiri (>= 1.6)
79
+ rails-html-sanitizer (1.6.0)
80
+ loofah (~> 2.21)
81
+ nokogiri (~> 1.14)
82
+ railties (7.0.7.2)
83
+ actionpack (= 7.0.7.2)
84
+ activesupport (= 7.0.7.2)
85
+ method_source
86
+ rake (>= 12.2)
87
+ thor (~> 1.0)
88
+ zeitwerk (~> 2.5)
89
+ rainbow (3.1.1)
90
+ rake (13.0.6)
91
+ rb-readline (0.5.5)
92
+ regexp_parser (2.8.1)
93
+ rexml (3.2.5)
94
+ rspec (3.12.0)
95
+ rspec-core (~> 3.12.0)
96
+ rspec-expectations (~> 3.12.0)
97
+ rspec-mocks (~> 3.12.0)
98
+ rspec-core (3.12.2)
99
+ rspec-support (~> 3.12.0)
100
+ rspec-expectations (3.12.3)
101
+ diff-lcs (>= 1.2.0, < 2.0)
102
+ rspec-support (~> 3.12.0)
103
+ rspec-mocks (3.12.6)
104
+ diff-lcs (>= 1.2.0, < 2.0)
105
+ rspec-support (~> 3.12.0)
106
+ rspec-support (3.12.1)
107
+ rubocop (1.54.2)
108
+ json (~> 2.3)
109
+ language_server-protocol (>= 3.17.0)
110
+ parallel (~> 1.10)
111
+ parser (>= 3.2.2.3)
112
+ rainbow (>= 2.2.2, < 4.0)
113
+ regexp_parser (>= 1.8, < 3.0)
114
+ rexml (>= 3.2.5, < 4.0)
115
+ rubocop-ast (>= 1.28.0, < 2.0)
116
+ ruby-progressbar (~> 1.7)
117
+ unicode-display_width (>= 2.4.0, < 3.0)
118
+ rubocop-ast (1.29.0)
119
+ parser (>= 3.2.1.0)
120
+ ruby-progressbar (1.13.0)
121
+ sqlite3 (1.6.3-arm64-darwin)
122
+ sqlite3 (1.6.3-x86_64-linux)
123
+ thor (1.2.2)
124
+ timecop (0.9.6)
125
+ tzinfo (2.0.6)
126
+ concurrent-ruby (~> 1.0)
127
+ unicode-display_width (2.4.2)
128
+ zeitwerk (2.6.8)
129
+
130
+ PLATFORMS
131
+ arm64-darwin-22
132
+ x86_64-linux
133
+
134
+ DEPENDENCIES
135
+ appraisal
136
+ data_migrate!
137
+ overcommit
138
+ pry
139
+ rake
140
+ rb-readline
141
+ rspec
142
+ rspec-core
143
+ rubocop
144
+ sqlite3 (~> 1.4)
145
+ timecop
146
+
147
+ BUNDLED WITH
148
+ 2.4.17
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  - [![Version](http://img.shields.io/gem/v/data_migrate.svg?style=flat-square)](https://rubygems.org/gems/data_migrate)
4
4
  - [![License](http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](http://opensource.org/licenses/MIT)
5
- - [![Travis](https://img.shields.io/travis/ilyakatz/data-migrate.svg)](https://travis-ci.org/ilyakatz/data-migrate)
5
+ - ![.github/workflows/build.yml](https://github.com/ilyakatz/data-migrate/actions/workflows/.github/workflows/build.yml/badge.svg)
6
6
  - [![Reviewed by Hound](https://img.shields.io/badge/Reviewed_by-Hound-8E64B0.svg)](https://houndci.com)
7
7
 
8
8
  Run data migrations alongside schema migrations.
@@ -12,7 +12,7 @@ migrations, except they should be reserved for data migrations. For
12
12
  instance, if you realize you need to titleize all your titles, this
13
13
  is the place to do it.
14
14
 
15
- ![Travis](./screenshot.png)
15
+ ![directory tree example](./screenshot.png)
16
16
 
17
17
  ## Why should I use this?
18
18
 
@@ -36,7 +36,7 @@ table to track all migrations.
36
36
 
37
37
  ## Rails Support
38
38
 
39
- Support Rails 5.2 through 7.0
39
+ Support Rails 6.1 through 7.1
40
40
 
41
41
 
42
42
  #### v1
@@ -96,7 +96,9 @@ Tasks work as they would with the 'vanilla' db version. The 'with_data' addition
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
 
99
- `rake db:migrate:status:with_data` provides and additional column to indicate which type of migration.
99
+ When using `rake db:migrate:with_data` migrations will be run in ascending order by their version. For example, if you have a data migration with version 20230410000000 and a schema migration with version 20230415000000, expect the data migration to run first.
100
+
101
+ `rake db:migrate:status:with_data` provides an additional column to indicate which type of migration.
100
102
 
101
103
  ### Configuration
102
104
 
@@ -162,9 +164,9 @@ Run tests for a specific version of Rails
162
164
 
163
165
  ```
164
166
  bundle exec appraisal install
165
- bundle exec appraisal rails-5.1 rspec
166
- bundle exec appraisal rails-5.2 rspec
167
- bundle exec appraisal rails-6.0 rspec
167
+ bundle exec appraisal rails-6.1 rspec
168
+ bundle exec appraisal rails-7.0 rspec
169
+ bundle exec appraisal rails-7.1 rspec
168
170
  ```
169
171
 
170
172
  ## Thanks
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, '>= 5.0')
22
+ s.add_dependency(rails_gem, '>= 6.1')
23
23
  end
24
24
 
25
25
  s.add_development_dependency "appraisal"
@@ -38,13 +38,4 @@ Gem::Specification.new do |s|
38
38
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
39
39
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
40
40
  s.require_paths = ["lib"]
41
-
42
- s.post_install_message = <<-POST_INSTALL_MESSAGE
43
- #{"*" * 80}
44
- data-migrate: IMPORTANT: Breaking change introduced for migrations from v2.
45
-
46
- Failure to run the migration can have serious consequences.
47
- See Readme for more info.
48
- #{"*" * 80}
49
- POST_INSTALL_MESSAGE
50
41
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "http://rubygems.org"
4
4
 
5
- gem "rails", "~> 6.1.0"
6
5
  gem "sqlite3", "~> 1.4"
6
+ gem "rails", "~> 6.1.0"
7
7
 
8
8
  gemspec path: "../"
@@ -0,0 +1,227 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ data_migrate (9.2.0)
5
+ activerecord (>= 6.1)
6
+ railties (>= 6.1)
7
+
8
+ GEM
9
+ remote: http://rubygems.org/
10
+ specs:
11
+ actioncable (6.1.7.3)
12
+ actionpack (= 6.1.7.3)
13
+ activesupport (= 6.1.7.3)
14
+ nio4r (~> 2.0)
15
+ websocket-driver (>= 0.6.1)
16
+ actionmailbox (6.1.7.3)
17
+ actionpack (= 6.1.7.3)
18
+ activejob (= 6.1.7.3)
19
+ activerecord (= 6.1.7.3)
20
+ activestorage (= 6.1.7.3)
21
+ activesupport (= 6.1.7.3)
22
+ mail (>= 2.7.1)
23
+ actionmailer (6.1.7.3)
24
+ actionpack (= 6.1.7.3)
25
+ actionview (= 6.1.7.3)
26
+ activejob (= 6.1.7.3)
27
+ activesupport (= 6.1.7.3)
28
+ mail (~> 2.5, >= 2.5.4)
29
+ rails-dom-testing (~> 2.0)
30
+ actionpack (6.1.7.3)
31
+ actionview (= 6.1.7.3)
32
+ activesupport (= 6.1.7.3)
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.3)
38
+ actionpack (= 6.1.7.3)
39
+ activerecord (= 6.1.7.3)
40
+ activestorage (= 6.1.7.3)
41
+ activesupport (= 6.1.7.3)
42
+ nokogiri (>= 1.8.5)
43
+ actionview (6.1.7.3)
44
+ activesupport (= 6.1.7.3)
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.3)
50
+ activesupport (= 6.1.7.3)
51
+ globalid (>= 0.3.6)
52
+ activemodel (6.1.7.3)
53
+ activesupport (= 6.1.7.3)
54
+ activerecord (6.1.7.3)
55
+ activemodel (= 6.1.7.3)
56
+ activesupport (= 6.1.7.3)
57
+ activestorage (6.1.7.3)
58
+ actionpack (= 6.1.7.3)
59
+ activejob (= 6.1.7.3)
60
+ activerecord (= 6.1.7.3)
61
+ activesupport (= 6.1.7.3)
62
+ marcel (~> 1.0)
63
+ mini_mime (>= 1.1.0)
64
+ activesupport (6.1.7.3)
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.2.4)
76
+ childprocess (4.1.0)
77
+ coderay (1.1.3)
78
+ concurrent-ruby (1.2.2)
79
+ crass (1.0.6)
80
+ date (3.3.3)
81
+ diff-lcs (1.5.0)
82
+ erubi (1.12.0)
83
+ globalid (1.1.0)
84
+ activesupport (>= 5.0)
85
+ i18n (1.14.1)
86
+ concurrent-ruby (~> 1.0)
87
+ iniparse (1.5.0)
88
+ json (2.6.3)
89
+ loofah (2.21.3)
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.2)
98
+ method_source (1.0.0)
99
+ mini_mime (1.1.2)
100
+ minitest (5.18.1)
101
+ net-imap (0.3.4)
102
+ date
103
+ net-protocol
104
+ net-pop (0.1.2)
105
+ net-protocol
106
+ net-protocol (0.2.1)
107
+ timeout
108
+ net-smtp (0.3.3)
109
+ net-protocol
110
+ nio4r (2.5.9)
111
+ nokogiri (1.15.2-arm64-darwin)
112
+ racc (~> 1.4)
113
+ nokogiri (1.15.2-x86_64-linux)
114
+ racc (~> 1.4)
115
+ overcommit (0.60.0)
116
+ childprocess (>= 0.6.3, < 5)
117
+ iniparse (~> 1.4)
118
+ rexml (~> 3.2)
119
+ parallel (1.23.0)
120
+ parser (3.2.2.3)
121
+ ast (~> 2.4.1)
122
+ racc
123
+ pry (0.14.2)
124
+ coderay (~> 1.1)
125
+ method_source (~> 1.0)
126
+ racc (1.7.1)
127
+ rack (2.2.7)
128
+ rack-test (2.1.0)
129
+ rack (>= 1.3)
130
+ rails (6.1.7.3)
131
+ actioncable (= 6.1.7.3)
132
+ actionmailbox (= 6.1.7.3)
133
+ actionmailer (= 6.1.7.3)
134
+ actionpack (= 6.1.7.3)
135
+ actiontext (= 6.1.7.3)
136
+ actionview (= 6.1.7.3)
137
+ activejob (= 6.1.7.3)
138
+ activemodel (= 6.1.7.3)
139
+ activerecord (= 6.1.7.3)
140
+ activestorage (= 6.1.7.3)
141
+ activesupport (= 6.1.7.3)
142
+ bundler (>= 1.15.0)
143
+ railties (= 6.1.7.3)
144
+ sprockets-rails (>= 2.0.0)
145
+ rails-dom-testing (2.0.3)
146
+ activesupport (>= 4.2.0)
147
+ nokogiri (>= 1.6)
148
+ rails-html-sanitizer (1.6.0)
149
+ loofah (~> 2.21)
150
+ nokogiri (~> 1.14)
151
+ railties (6.1.7.3)
152
+ actionpack (= 6.1.7.3)
153
+ activesupport (= 6.1.7.3)
154
+ method_source
155
+ rake (>= 12.2)
156
+ thor (~> 1.0)
157
+ rainbow (3.1.1)
158
+ rake (13.0.6)
159
+ rb-readline (0.5.5)
160
+ regexp_parser (2.8.1)
161
+ rexml (3.2.5)
162
+ rspec (3.12.0)
163
+ rspec-core (~> 3.12.0)
164
+ rspec-expectations (~> 3.12.0)
165
+ rspec-mocks (~> 3.12.0)
166
+ rspec-core (3.12.2)
167
+ rspec-support (~> 3.12.0)
168
+ rspec-expectations (3.12.3)
169
+ diff-lcs (>= 1.2.0, < 2.0)
170
+ rspec-support (~> 3.12.0)
171
+ rspec-mocks (3.12.5)
172
+ diff-lcs (>= 1.2.0, < 2.0)
173
+ rspec-support (~> 3.12.0)
174
+ rspec-support (3.12.0)
175
+ rubocop (1.52.1)
176
+ json (~> 2.3)
177
+ parallel (~> 1.10)
178
+ parser (>= 3.2.2.3)
179
+ rainbow (>= 2.2.2, < 4.0)
180
+ regexp_parser (>= 1.8, < 3.0)
181
+ rexml (>= 3.2.5, < 4.0)
182
+ rubocop-ast (>= 1.28.0, < 2.0)
183
+ ruby-progressbar (~> 1.7)
184
+ unicode-display_width (>= 2.4.0, < 3.0)
185
+ rubocop-ast (1.29.0)
186
+ parser (>= 3.2.1.0)
187
+ ruby-progressbar (1.13.0)
188
+ sprockets (4.2.0)
189
+ concurrent-ruby (~> 1.0)
190
+ rack (>= 2.2.4, < 4)
191
+ sprockets-rails (3.4.2)
192
+ actionpack (>= 5.2)
193
+ activesupport (>= 5.2)
194
+ sprockets (>= 3.0.0)
195
+ sqlite3 (1.6.3-arm64-darwin)
196
+ sqlite3 (1.6.3-x86_64-linux)
197
+ thor (1.2.2)
198
+ timecop (0.9.6)
199
+ timeout (0.3.2)
200
+ tzinfo (2.0.6)
201
+ concurrent-ruby (~> 1.0)
202
+ unicode-display_width (2.4.2)
203
+ websocket-driver (0.7.5)
204
+ websocket-extensions (>= 0.1.0)
205
+ websocket-extensions (0.1.5)
206
+ zeitwerk (2.6.8)
207
+
208
+ PLATFORMS
209
+ arm64-darwin-22
210
+ x86_64-linux
211
+
212
+ DEPENDENCIES
213
+ appraisal
214
+ data_migrate!
215
+ overcommit
216
+ pry
217
+ rails (~> 6.1.0)
218
+ rake
219
+ rb-readline
220
+ rspec
221
+ rspec-core
222
+ rubocop
223
+ sqlite3 (~> 1.4)
224
+ timecop
225
+
226
+ BUNDLED WITH
227
+ 2.4.14