data_migrate 9.1.1 → 9.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/build.yml +2 -1
  3. data/.gitignore +0 -1
  4. data/Appraisals +5 -5
  5. data/Changelog.md +7 -0
  6. data/Gemfile +0 -1
  7. data/Gemfile.lock +184 -0
  8. data/README.md +3 -3
  9. data/data_migrate.gemspec +2 -2
  10. data/gemfiles/rails_6.1.gemfile +0 -1
  11. data/gemfiles/rails_6.1.gemfile.lock +229 -0
  12. data/gemfiles/rails_7.0.gemfile +1 -2
  13. data/gemfiles/rails_7.0.gemfile.lock +230 -0
  14. data/gemfiles/{rails_6.0.gemfile → rails_7.1.gemfile} +1 -2
  15. data/gemfiles/rails_7.1.gemfile.lock +263 -0
  16. data/lib/data_migrate/data_migrator.rb +11 -23
  17. data/lib/data_migrate/data_schema.rb +1 -1
  18. data/lib/data_migrate/data_schema_migration.rb +24 -7
  19. data/lib/data_migrate/database_configurations_wrapper.rb +11 -0
  20. data/lib/data_migrate/database_tasks.rb +120 -63
  21. data/lib/data_migrate/migration_context.rb +11 -8
  22. data/lib/data_migrate/rails_helper.rb +79 -0
  23. data/lib/data_migrate/schema_dumper.rb +1 -1
  24. data/lib/data_migrate/schema_migration.rb +5 -4
  25. data/lib/data_migrate/status_service.rb +3 -3
  26. data/lib/data_migrate/tasks/data_migrate_tasks.rb +3 -3
  27. data/lib/data_migrate/test.rb +14 -0
  28. data/lib/data_migrate/version.rb +1 -1
  29. data/lib/data_migrate.rb +2 -1
  30. data/spec/data_migrate/data_migrator_spec.rb +16 -13
  31. data/spec/data_migrate/data_schema_migration_spec.rb +25 -8
  32. data/spec/data_migrate/data_spec.rb +1 -1
  33. data/spec/data_migrate/database_tasks_spec.rb +34 -18
  34. data/spec/data_migrate/migration_context_spec.rb +15 -8
  35. data/spec/data_migrate/schema_dumper_spec.rb +6 -3
  36. data/spec/data_migrate/schema_migration_spec.rb +13 -6
  37. data/spec/data_migrate/status_service_spec.rb +6 -3
  38. data/spec/data_migrate/tasks/data_migrate_tasks_spec.rb +8 -8
  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/20131111111111_late_migration.rb +1 -1
  42. data/spec/db/migrate/20202020202011_db_migration.rb +1 -1
  43. data/tasks/databases.rake +21 -38
  44. metadata +19 -15
  45. data/Gemfile.rails6.1 +0 -11
  46. data/lib/data_migrate/legacy_migrator.rb +0 -22
  47. 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: e439cb5180eca3cf1195560f8942178ac4ca64304489f1ec3ce3b1efa3462be4
4
- data.tar.gz: efe9f8166f6fd7080d68b6dc050ac63124528d66ccc0465a505cd1002bbd7dce
3
+ metadata.gz: ef4acf6725174a7fa111477f13b0fa7229598c3a8034c55d4e6baae020bb8036
4
+ data.tar.gz: 0c4ee40e59561410c9f31752d48952c141db6af9fdae0f5d83c476241ab7c1fa
5
5
  SHA512:
6
- metadata.gz: 64ca4079825785ca93b6e636a62b9117d15e5b6e10c667467657b229833014286e3339c644360f5ffa1ddab83bafca3dbff0397e5b1ecaa75eb646fe87b637d0
7
- data.tar.gz: c9dced4b2efe056e2519ad8493c2d25a165d122f6350569a191b182d8d6f6e189f40fbff744f1b31039810636cd603b18363618080b4eb502570e1943828631d
6
+ metadata.gz: 4a10f7c62212a39ce6e0629a15e61f3be4e55cf93bcac0fb56a85506bfe0bc272833268558776361b14525196c257cb065825a93d17eed0f7a42185e1db162bb
7
+ data.tar.gz: 19b397534a6274ffbfcbbe6d71c25dfb3f192a22d37e79491b65818a73906a1d04bed943c45c1f078605d5eff08cfcac23e2cfb1d2640a45ad0065446c44d4d7
@@ -14,10 +14,11 @@ jobs:
14
14
  - '3.0'
15
15
  - '3.1'
16
16
  - '3.2'
17
+ - '3.3'
17
18
  gemfile:
18
- - gemfiles/rails_6.0.gemfile
19
19
  - gemfiles/rails_6.1.gemfile
20
20
  - gemfiles/rails_7.0.gemfile
21
+ - gemfiles/rails_7.1.gemfile
21
22
  runs-on: ubuntu-latest
22
23
  env:
23
24
  BUNDLE_GEMFILE: ${{ matrix.gemfile }}
data/.gitignore CHANGED
@@ -1,6 +1,5 @@
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
data/Appraisals CHANGED
@@ -1,11 +1,11 @@
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
11
  end
data/Changelog.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## 9.3.0
4
+ - Improve with_data Rake task for multiple database https://github.com/ilyakatz/data-migrate/pull/296
5
+
6
+ ## 9.2.0
7
+ - Support Rails 7.1 https://github.com/ilyakatz/data-migrate/pull/278
8
+ - Build and test against 7.1.0.rc1 https://github.com/ilyakatz/data-migrate/pull/286
9
+
3
10
  ## 9.1.0
4
11
 
5
12
  - Fix a bug that caused `schema_sha1` in `ar_internal_metadata` to be reset to the `data_schema.rb` file. (#272)
data/Gemfile CHANGED
@@ -1,4 +1,3 @@
1
1
  source "http://rubygems.org"
2
2
 
3
- gem 'sqlite3', "~> 1.4"
4
3
  gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,184 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ data_migrate (9.3.0)
5
+ activerecord (>= 6.1)
6
+ railties (>= 6.1)
7
+
8
+ GEM
9
+ remote: http://rubygems.org/
10
+ specs:
11
+ actionpack (7.1.3.2)
12
+ actionview (= 7.1.3.2)
13
+ activesupport (= 7.1.3.2)
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.2)
22
+ activesupport (= 7.1.3.2)
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.2)
28
+ activesupport (= 7.1.3.2)
29
+ activerecord (7.1.3.2)
30
+ activemodel (= 7.1.3.2)
31
+ activesupport (= 7.1.3.2)
32
+ timeout (>= 0.4.0)
33
+ activesupport (7.1.3.2)
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.6)
50
+ builder (3.2.4)
51
+ childprocess (5.0.0)
52
+ coderay (1.1.3)
53
+ concurrent-ruby (1.2.3)
54
+ connection_pool (2.4.1)
55
+ crass (1.0.6)
56
+ diff-lcs (1.5.1)
57
+ drb (2.2.0)
58
+ ruby2_keywords
59
+ erubi (1.12.0)
60
+ i18n (1.14.1)
61
+ concurrent-ruby (~> 1.0)
62
+ iniparse (1.5.0)
63
+ io-console (0.7.2)
64
+ irb (1.11.2)
65
+ rdoc
66
+ reline (>= 0.4.2)
67
+ json (2.7.1)
68
+ language_server-protocol (3.17.0.3)
69
+ loofah (2.22.0)
70
+ crass (~> 1.0.2)
71
+ nokogiri (>= 1.12.0)
72
+ method_source (1.0.0)
73
+ minitest (5.22.2)
74
+ mutex_m (0.2.0)
75
+ nokogiri (1.16.2-arm64-darwin)
76
+ racc (~> 1.4)
77
+ nokogiri (1.16.2-x86_64-linux)
78
+ racc (~> 1.4)
79
+ overcommit (0.63.0)
80
+ childprocess (>= 0.6.3, < 6)
81
+ iniparse (~> 1.4)
82
+ rexml (~> 3.2)
83
+ parallel (1.24.0)
84
+ parser (3.3.0.5)
85
+ ast (~> 2.4.1)
86
+ racc
87
+ pry (0.14.2)
88
+ coderay (~> 1.1)
89
+ method_source (~> 1.0)
90
+ psych (5.1.2)
91
+ stringio
92
+ racc (1.7.3)
93
+ rack (3.0.9.1)
94
+ rack-session (2.0.0)
95
+ rack (>= 3.0.0)
96
+ rack-test (2.1.0)
97
+ rack (>= 1.3)
98
+ rackup (2.1.0)
99
+ rack (>= 3)
100
+ webrick (~> 1.8)
101
+ rails-dom-testing (2.2.0)
102
+ activesupport (>= 5.0.0)
103
+ minitest
104
+ nokogiri (>= 1.6)
105
+ rails-html-sanitizer (1.6.0)
106
+ loofah (~> 2.21)
107
+ nokogiri (~> 1.14)
108
+ railties (7.1.3.2)
109
+ actionpack (= 7.1.3.2)
110
+ activesupport (= 7.1.3.2)
111
+ irb
112
+ rackup (>= 1.0.0)
113
+ rake (>= 12.2)
114
+ thor (~> 1.0, >= 1.2.2)
115
+ zeitwerk (~> 2.6)
116
+ rainbow (3.1.1)
117
+ rake (13.1.0)
118
+ rb-readline (0.5.5)
119
+ rdoc (6.6.2)
120
+ psych (>= 4.0.0)
121
+ regexp_parser (2.9.0)
122
+ reline (0.4.3)
123
+ io-console (~> 0.5)
124
+ rexml (3.2.6)
125
+ rspec (3.13.0)
126
+ rspec-core (~> 3.13.0)
127
+ rspec-expectations (~> 3.13.0)
128
+ rspec-mocks (~> 3.13.0)
129
+ rspec-core (3.13.0)
130
+ rspec-support (~> 3.13.0)
131
+ rspec-expectations (3.13.0)
132
+ diff-lcs (>= 1.2.0, < 2.0)
133
+ rspec-support (~> 3.13.0)
134
+ rspec-mocks (3.13.0)
135
+ diff-lcs (>= 1.2.0, < 2.0)
136
+ rspec-support (~> 3.13.0)
137
+ rspec-support (3.13.1)
138
+ rubocop (1.60.2)
139
+ json (~> 2.3)
140
+ language_server-protocol (>= 3.17.0)
141
+ parallel (~> 1.10)
142
+ parser (>= 3.3.0.2)
143
+ rainbow (>= 2.2.2, < 4.0)
144
+ regexp_parser (>= 1.8, < 3.0)
145
+ rexml (>= 3.2.5, < 4.0)
146
+ rubocop-ast (>= 1.30.0, < 2.0)
147
+ ruby-progressbar (~> 1.7)
148
+ unicode-display_width (>= 2.4.0, < 3.0)
149
+ rubocop-ast (1.30.0)
150
+ parser (>= 3.2.1.0)
151
+ ruby-progressbar (1.13.0)
152
+ ruby2_keywords (0.0.5)
153
+ sqlite3 (1.7.2-arm64-darwin)
154
+ sqlite3 (1.7.2-x86_64-linux)
155
+ stringio (3.1.0)
156
+ thor (1.3.1)
157
+ timecop (0.9.8)
158
+ timeout (0.4.1)
159
+ tzinfo (2.0.6)
160
+ concurrent-ruby (~> 1.0)
161
+ unicode-display_width (2.5.0)
162
+ webrick (1.8.1)
163
+ zeitwerk (2.6.13)
164
+
165
+ PLATFORMS
166
+ arm64-darwin-22
167
+ arm64-darwin-23
168
+ x86_64-linux
169
+
170
+ DEPENDENCIES
171
+ appraisal
172
+ data_migrate!
173
+ overcommit
174
+ pry
175
+ rake
176
+ rb-readline
177
+ rspec
178
+ rspec-core
179
+ rubocop
180
+ sqlite3
181
+ timecop
182
+
183
+ BUNDLED WITH
184
+ 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.0 through 7.0
39
+ Support Rails 6.1 through 7.1
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
 
@@ -164,9 +164,9 @@ Run tests for a specific version of Rails
164
164
 
165
165
  ```
166
166
  bundle exec appraisal install
167
- bundle exec appraisal rails-6.0 rspec
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
170
  ```
171
171
 
172
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, '>= 6.0')
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", "~> 1.3.6"
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"
@@ -3,6 +3,5 @@
3
3
  source "http://rubygems.org"
4
4
 
5
5
  gem "rails", "~> 6.1.0"
6
- gem "sqlite3", "~> 1.4"
7
6
 
8
7
  gemspec path: "../"
@@ -0,0 +1,229 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ data_migrate (9.3.0)
5
+ activerecord (>= 6.1)
6
+ railties (>= 6.1)
7
+
8
+ GEM
9
+ remote: http://rubygems.org/
10
+ specs:
11
+ actioncable (6.1.7.7)
12
+ actionpack (= 6.1.7.7)
13
+ activesupport (= 6.1.7.7)
14
+ nio4r (~> 2.0)
15
+ websocket-driver (>= 0.6.1)
16
+ actionmailbox (6.1.7.7)
17
+ actionpack (= 6.1.7.7)
18
+ activejob (= 6.1.7.7)
19
+ activerecord (= 6.1.7.7)
20
+ activestorage (= 6.1.7.7)
21
+ activesupport (= 6.1.7.7)
22
+ mail (>= 2.7.1)
23
+ actionmailer (6.1.7.7)
24
+ actionpack (= 6.1.7.7)
25
+ actionview (= 6.1.7.7)
26
+ activejob (= 6.1.7.7)
27
+ activesupport (= 6.1.7.7)
28
+ mail (~> 2.5, >= 2.5.4)
29
+ rails-dom-testing (~> 2.0)
30
+ actionpack (6.1.7.7)
31
+ actionview (= 6.1.7.7)
32
+ activesupport (= 6.1.7.7)
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.7)
38
+ actionpack (= 6.1.7.7)
39
+ activerecord (= 6.1.7.7)
40
+ activestorage (= 6.1.7.7)
41
+ activesupport (= 6.1.7.7)
42
+ nokogiri (>= 1.8.5)
43
+ actionview (6.1.7.7)
44
+ activesupport (= 6.1.7.7)
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.7)
50
+ activesupport (= 6.1.7.7)
51
+ globalid (>= 0.3.6)
52
+ activemodel (6.1.7.7)
53
+ activesupport (= 6.1.7.7)
54
+ activerecord (6.1.7.7)
55
+ activemodel (= 6.1.7.7)
56
+ activesupport (= 6.1.7.7)
57
+ activestorage (6.1.7.7)
58
+ actionpack (= 6.1.7.7)
59
+ activejob (= 6.1.7.7)
60
+ activerecord (= 6.1.7.7)
61
+ activesupport (= 6.1.7.7)
62
+ marcel (~> 1.0)
63
+ mini_mime (>= 1.1.0)
64
+ activesupport (6.1.7.7)
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.3)
79
+ crass (1.0.6)
80
+ date (3.3.4)
81
+ diff-lcs (1.5.0)
82
+ erubi (1.12.0)
83
+ globalid (1.2.1)
84
+ activesupport (>= 6.1)
85
+ i18n (1.14.1)
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.2)
98
+ method_source (1.0.0)
99
+ mini_mime (1.1.5)
100
+ minitest (5.22.2)
101
+ net-imap (0.4.10)
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.4.0.1)
109
+ net-protocol
110
+ nio4r (2.7.0)
111
+ nokogiri (1.16.2-arm64-darwin)
112
+ racc (~> 1.4)
113
+ nokogiri (1.16.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.3)
127
+ rack (2.2.8.1)
128
+ rack-test (2.1.0)
129
+ rack (>= 1.3)
130
+ rails (6.1.7.7)
131
+ actioncable (= 6.1.7.7)
132
+ actionmailbox (= 6.1.7.7)
133
+ actionmailer (= 6.1.7.7)
134
+ actionpack (= 6.1.7.7)
135
+ actiontext (= 6.1.7.7)
136
+ actionview (= 6.1.7.7)
137
+ activejob (= 6.1.7.7)
138
+ activemodel (= 6.1.7.7)
139
+ activerecord (= 6.1.7.7)
140
+ activestorage (= 6.1.7.7)
141
+ activesupport (= 6.1.7.7)
142
+ bundler (>= 1.15.0)
143
+ railties (= 6.1.7.7)
144
+ sprockets-rails (>= 2.0.0)
145
+ rails-dom-testing (2.2.0)
146
+ activesupport (>= 5.0.0)
147
+ minitest
148
+ nokogiri (>= 1.6)
149
+ rails-html-sanitizer (1.6.0)
150
+ loofah (~> 2.21)
151
+ nokogiri (~> 1.14)
152
+ railties (6.1.7.7)
153
+ actionpack (= 6.1.7.7)
154
+ activesupport (= 6.1.7.7)
155
+ method_source
156
+ rake (>= 12.2)
157
+ thor (~> 1.0)
158
+ rainbow (3.1.1)
159
+ rake (13.1.0)
160
+ rb-readline (0.5.5)
161
+ regexp_parser (2.8.1)
162
+ rexml (3.2.5)
163
+ rspec (3.12.0)
164
+ rspec-core (~> 3.12.0)
165
+ rspec-expectations (~> 3.12.0)
166
+ rspec-mocks (~> 3.12.0)
167
+ rspec-core (3.12.2)
168
+ rspec-support (~> 3.12.0)
169
+ rspec-expectations (3.12.3)
170
+ diff-lcs (>= 1.2.0, < 2.0)
171
+ rspec-support (~> 3.12.0)
172
+ rspec-mocks (3.12.5)
173
+ diff-lcs (>= 1.2.0, < 2.0)
174
+ rspec-support (~> 3.12.0)
175
+ rspec-support (3.12.0)
176
+ rubocop (1.52.1)
177
+ json (~> 2.3)
178
+ parallel (~> 1.10)
179
+ parser (>= 3.2.2.3)
180
+ rainbow (>= 2.2.2, < 4.0)
181
+ regexp_parser (>= 1.8, < 3.0)
182
+ rexml (>= 3.2.5, < 4.0)
183
+ rubocop-ast (>= 1.28.0, < 2.0)
184
+ ruby-progressbar (~> 1.7)
185
+ unicode-display_width (>= 2.4.0, < 3.0)
186
+ rubocop-ast (1.29.0)
187
+ parser (>= 3.2.1.0)
188
+ ruby-progressbar (1.13.0)
189
+ sprockets (4.2.1)
190
+ concurrent-ruby (~> 1.0)
191
+ rack (>= 2.2.4, < 4)
192
+ sprockets-rails (3.4.2)
193
+ actionpack (>= 5.2)
194
+ activesupport (>= 5.2)
195
+ sprockets (>= 3.0.0)
196
+ sqlite3 (1.7.2-arm64-darwin)
197
+ sqlite3 (1.7.2-x86_64-linux)
198
+ thor (1.3.1)
199
+ timecop (0.9.6)
200
+ timeout (0.4.1)
201
+ tzinfo (2.0.6)
202
+ concurrent-ruby (~> 1.0)
203
+ unicode-display_width (2.4.2)
204
+ websocket-driver (0.7.6)
205
+ websocket-extensions (>= 0.1.0)
206
+ websocket-extensions (0.1.5)
207
+ zeitwerk (2.6.13)
208
+
209
+ PLATFORMS
210
+ arm64-darwin-22
211
+ arm64-darwin-23
212
+ x86_64-linux
213
+
214
+ DEPENDENCIES
215
+ appraisal
216
+ data_migrate!
217
+ overcommit
218
+ pry
219
+ rails (~> 6.1.0)
220
+ rake
221
+ rb-readline
222
+ rspec
223
+ rspec-core
224
+ rubocop
225
+ sqlite3
226
+ timecop
227
+
228
+ BUNDLED WITH
229
+ 2.5.6
@@ -2,7 +2,6 @@
2
2
 
3
3
  source "http://rubygems.org"
4
4
 
5
- gem "sqlite3", "~> 1.4"
6
- gem "rails", "~> 7.0"
5
+ gem "rails", "~> 7.0.0"
7
6
 
8
7
  gemspec path: "../"