data_migrate 9.2.0 → 9.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 98382ecfcd0ad635d3e53bb746f4b2a7a402c2b2a78d312e864bbe6f288b65b1
4
- data.tar.gz: 315d89e1465e7f5a804d4e70d67963949608632b91b7276ea23319f2183789ba
3
+ metadata.gz: aa16e421f2f5d046c5e78678b226574ddaeca7345bfcff5f8ab69091fb901f3c
4
+ data.tar.gz: 91d60c54724dc47e6aac6f7638275c005c0f27f052741c00fbed0f15fb8056b7
5
5
  SHA512:
6
- metadata.gz: '04098142838de3bb59be85adc46a9a4aed734668a154378488c74ea2a1982793a45450364f089edb479add87cab1b47e801916553c01ad003bbe71c0ba06b855'
7
- data.tar.gz: 4654fdfb138a53c5cc4ff59df1d63bc66ccd0f66d292f79c0d37ccbdb43c184144d5122718e9027ea643f1e0786d79844aee44d70feb5a1c455a59670286e5ef
6
+ metadata.gz: e0585dd9cc369cfbb980c609d1c7f1cc286a3109f799303d1518cca460f1e41b89df484154426e8e6798cd674f520241d19ab4bd2343bb0800e429de78b7d379
7
+ data.tar.gz: 52aeb1ce48bcf2644f8c4640b99d5dbb98bee62e10fa5f3a20fabff41eb3dc833c346c39b51245a128095eb75231d588ca734092056aedbff62bfa1df6512888
@@ -14,6 +14,7 @@ jobs:
14
14
  - '3.0'
15
15
  - '3.1'
16
16
  - '3.2'
17
+ - '3.3'
17
18
  gemfile:
18
19
  - gemfiles/rails_6.1.gemfile
19
20
  - gemfiles/rails_7.0.gemfile
data/Changelog.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 9.4.1
4
+ - Add db:prepare task
5
+
6
+ ## 9.4.0
7
+ - Reset model schema cache before each data migration https://github.com/ilyakatz/data-migrate/pull/307
8
+ - Run load_config rake task before db:migrate:with_data https://github.com/ilyakatz/data-migrate/pull/308
9
+
10
+ ## 9.3.0
11
+ - Improve with_data Rake task for multiple database https://github.com/ilyakatz/data-migrate/pull/296
12
+
3
13
  ## 9.2.0
4
14
  - Support Rails 7.1 https://github.com/ilyakatz/data-migrate/pull/278
5
15
  - Build and test against 7.1.0.rc1 https://github.com/ilyakatz/data-migrate/pull/286
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 CHANGED
@@ -1,134 +1,170 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- data_migrate (9.2.0)
4
+ data_migrate (9.4.1)
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
- actionpack (7.0.7.2)
12
- actionview (= 7.0.7.2)
13
- activesupport (= 7.0.7.2)
14
- rack (~> 2.0, >= 2.2.4)
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)
15
18
  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)
19
+ rails-dom-testing (~> 2.2)
20
+ rails-html-sanitizer (~> 1.6)
21
+ actionview (7.1.3.4)
22
+ activesupport (= 7.1.3.4)
20
23
  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)
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
30
36
  concurrent-ruby (~> 1.0, >= 1.0.2)
37
+ connection_pool (>= 2.2.5)
38
+ drb
31
39
  i18n (>= 1.6, < 2)
32
40
  minitest (>= 5.1)
41
+ mutex_m
33
42
  tzinfo (~> 2.0)
34
43
  appraisal (2.5.0)
35
44
  bundler
36
45
  rake
37
46
  thor (>= 0.14.0)
38
47
  ast (2.4.2)
48
+ base64 (0.2.0)
49
+ bigdecimal (3.1.8)
39
50
  builder (3.2.4)
40
- childprocess (4.1.0)
51
+ childprocess (5.0.0)
41
52
  coderay (1.1.3)
42
- concurrent-ruby (1.2.2)
53
+ concurrent-ruby (1.3.1)
54
+ connection_pool (2.4.1)
43
55
  crass (1.0.6)
44
- diff-lcs (1.5.0)
56
+ diff-lcs (1.5.1)
57
+ drb (2.2.1)
45
58
  erubi (1.12.0)
46
- i18n (1.14.1)
59
+ i18n (1.14.5)
47
60
  concurrent-ruby (~> 1.0)
48
61
  iniparse (1.5.0)
49
- json (2.6.3)
62
+ io-console (0.7.2)
63
+ irb (1.11.2)
64
+ rdoc
65
+ reline (>= 0.4.2)
66
+ json (2.7.1)
50
67
  language_server-protocol (3.17.0.3)
51
- loofah (2.21.3)
68
+ loofah (2.22.0)
52
69
  crass (~> 1.0.2)
53
70
  nokogiri (>= 1.12.0)
54
71
  method_source (1.0.0)
55
- minitest (5.19.0)
56
- nokogiri (1.15.3-arm64-darwin)
72
+ minitest (5.23.1)
73
+ mutex_m (0.2.0)
74
+ nokogiri (1.16.5-arm64-darwin)
57
75
  racc (~> 1.4)
58
- nokogiri (1.15.3-x86_64-linux)
76
+ nokogiri (1.16.5-x86_64-linux)
59
77
  racc (~> 1.4)
60
- overcommit (0.60.0)
61
- childprocess (>= 0.6.3, < 5)
78
+ overcommit (0.63.0)
79
+ childprocess (>= 0.6.3, < 6)
62
80
  iniparse (~> 1.4)
63
81
  rexml (~> 3.2)
64
- parallel (1.23.0)
65
- parser (3.2.2.3)
82
+ parallel (1.24.0)
83
+ parser (3.3.0.5)
66
84
  ast (~> 2.4.1)
67
85
  racc
68
86
  pry (0.14.2)
69
87
  coderay (~> 1.1)
70
88
  method_source (~> 1.0)
71
- racc (1.7.1)
72
- rack (2.2.7)
89
+ psych (5.1.2)
90
+ stringio
91
+ racc (1.8.0)
92
+ rack (3.0.11)
93
+ rack-session (2.0.0)
94
+ rack (>= 3.0.0)
73
95
  rack-test (2.1.0)
74
96
  rack (>= 1.3)
75
- rails-dom-testing (2.1.1)
97
+ rackup (2.1.0)
98
+ rack (>= 3)
99
+ webrick (~> 1.8)
100
+ rails-dom-testing (2.2.0)
76
101
  activesupport (>= 5.0.0)
77
102
  minitest
78
103
  nokogiri (>= 1.6)
79
104
  rails-html-sanitizer (1.6.0)
80
105
  loofah (~> 2.21)
81
106
  nokogiri (~> 1.14)
82
- railties (7.0.7.2)
83
- actionpack (= 7.0.7.2)
84
- activesupport (= 7.0.7.2)
85
- method_source
107
+ railties (7.1.3.4)
108
+ actionpack (= 7.1.3.4)
109
+ activesupport (= 7.1.3.4)
110
+ irb
111
+ rackup (>= 1.0.0)
86
112
  rake (>= 12.2)
87
- thor (~> 1.0)
88
- zeitwerk (~> 2.5)
113
+ thor (~> 1.0, >= 1.2.2)
114
+ zeitwerk (~> 2.6)
89
115
  rainbow (3.1.1)
90
- rake (13.0.6)
116
+ rake (13.1.0)
91
117
  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)
118
+ rdoc (6.6.3.1)
119
+ psych (>= 4.0.0)
120
+ regexp_parser (2.9.0)
121
+ reline (0.4.3)
122
+ io-console (~> 0.5)
123
+ rexml (3.2.8)
124
+ strscan (>= 3.0.9)
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)
101
132
  diff-lcs (>= 1.2.0, < 2.0)
102
- rspec-support (~> 3.12.0)
103
- rspec-mocks (3.12.6)
133
+ rspec-support (~> 3.13.0)
134
+ rspec-mocks (3.13.0)
104
135
  diff-lcs (>= 1.2.0, < 2.0)
105
- rspec-support (~> 3.12.0)
106
- rspec-support (3.12.1)
107
- rubocop (1.54.2)
136
+ rspec-support (~> 3.13.0)
137
+ rspec-support (3.13.1)
138
+ rubocop (1.60.2)
108
139
  json (~> 2.3)
109
140
  language_server-protocol (>= 3.17.0)
110
141
  parallel (~> 1.10)
111
- parser (>= 3.2.2.3)
142
+ parser (>= 3.3.0.2)
112
143
  rainbow (>= 2.2.2, < 4.0)
113
144
  regexp_parser (>= 1.8, < 3.0)
114
145
  rexml (>= 3.2.5, < 4.0)
115
- rubocop-ast (>= 1.28.0, < 2.0)
146
+ rubocop-ast (>= 1.30.0, < 2.0)
116
147
  ruby-progressbar (~> 1.7)
117
148
  unicode-display_width (>= 2.4.0, < 3.0)
118
- rubocop-ast (1.29.0)
149
+ rubocop-ast (1.30.0)
119
150
  parser (>= 3.2.1.0)
120
151
  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)
152
+ sqlite3 (1.7.2-arm64-darwin)
153
+ sqlite3 (1.7.2-x86_64-linux)
154
+ stringio (3.1.0)
155
+ strscan (3.1.0)
156
+ thor (1.3.1)
157
+ timecop (0.9.8)
158
+ timeout (0.4.1)
125
159
  tzinfo (2.0.6)
126
160
  concurrent-ruby (~> 1.0)
127
- unicode-display_width (2.4.2)
128
- zeitwerk (2.6.8)
161
+ unicode-display_width (2.5.0)
162
+ webrick (1.8.1)
163
+ zeitwerk (2.6.13)
129
164
 
130
165
  PLATFORMS
131
166
  arm64-darwin-22
167
+ arm64-darwin-23
132
168
  x86_64-linux
133
169
 
134
170
  DEPENDENCIES
@@ -141,7 +177,7 @@ DEPENDENCIES
141
177
  rspec
142
178
  rspec-core
143
179
  rubocop
144
- sqlite3 (~> 1.4)
180
+ sqlite3
145
181
  timecop
146
182
 
147
183
  BUNDLED WITH
data/data_migrate.gemspec CHANGED
@@ -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"
@@ -2,7 +2,6 @@
2
2
 
3
3
  source "http://rubygems.org"
4
4
 
5
- gem "sqlite3", "~> 1.4"
6
5
  gem "rails", "~> 6.1.0"
7
6
 
8
7
  gemspec path: "../"
@@ -1,67 +1,67 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- data_migrate (9.2.0)
4
+ data_migrate (9.4.1)
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.3)
12
- actionpack (= 6.1.7.3)
13
- activesupport (= 6.1.7.3)
11
+ actioncable (6.1.7.7)
12
+ actionpack (= 6.1.7.7)
13
+ activesupport (= 6.1.7.7)
14
14
  nio4r (~> 2.0)
15
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)
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
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)
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
28
  mail (~> 2.5, >= 2.5.4)
29
29
  rails-dom-testing (~> 2.0)
30
- actionpack (6.1.7.3)
31
- actionview (= 6.1.7.3)
32
- activesupport (= 6.1.7.3)
30
+ actionpack (6.1.7.7)
31
+ actionview (= 6.1.7.7)
32
+ activesupport (= 6.1.7.7)
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.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)
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
42
  nokogiri (>= 1.8.5)
43
- actionview (6.1.7.3)
44
- activesupport (= 6.1.7.3)
43
+ actionview (6.1.7.7)
44
+ activesupport (= 6.1.7.7)
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.3)
50
- activesupport (= 6.1.7.3)
49
+ activejob (6.1.7.7)
50
+ activesupport (= 6.1.7.7)
51
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)
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
62
  marcel (~> 1.0)
63
63
  mini_mime (>= 1.1.0)
64
- activesupport (6.1.7.3)
64
+ activesupport (6.1.7.7)
65
65
  concurrent-ruby (~> 1.0, >= 1.0.2)
66
66
  i18n (>= 1.6, < 2)
67
67
  minitest (>= 5.1)
@@ -75,18 +75,18 @@ GEM
75
75
  builder (3.2.4)
76
76
  childprocess (4.1.0)
77
77
  coderay (1.1.3)
78
- concurrent-ruby (1.2.2)
78
+ concurrent-ruby (1.2.3)
79
79
  crass (1.0.6)
80
- date (3.3.3)
80
+ date (3.3.4)
81
81
  diff-lcs (1.5.0)
82
82
  erubi (1.12.0)
83
- globalid (1.1.0)
84
- activesupport (>= 5.0)
83
+ globalid (1.2.1)
84
+ activesupport (>= 6.1)
85
85
  i18n (1.14.1)
86
86
  concurrent-ruby (~> 1.0)
87
87
  iniparse (1.5.0)
88
88
  json (2.6.3)
89
- loofah (2.21.3)
89
+ loofah (2.22.0)
90
90
  crass (~> 1.0.2)
91
91
  nokogiri (>= 1.12.0)
92
92
  mail (2.8.1)
@@ -96,21 +96,21 @@ GEM
96
96
  net-smtp
97
97
  marcel (1.0.2)
98
98
  method_source (1.0.0)
99
- mini_mime (1.1.2)
100
- minitest (5.18.1)
101
- net-imap (0.3.4)
99
+ mini_mime (1.1.5)
100
+ minitest (5.22.2)
101
+ net-imap (0.4.10)
102
102
  date
103
103
  net-protocol
104
104
  net-pop (0.1.2)
105
105
  net-protocol
106
- net-protocol (0.2.1)
106
+ net-protocol (0.2.2)
107
107
  timeout
108
- net-smtp (0.3.3)
108
+ net-smtp (0.4.0.1)
109
109
  net-protocol
110
- nio4r (2.5.9)
111
- nokogiri (1.15.2-arm64-darwin)
110
+ nio4r (2.7.0)
111
+ nokogiri (1.16.2-arm64-darwin)
112
112
  racc (~> 1.4)
113
- nokogiri (1.15.2-x86_64-linux)
113
+ nokogiri (1.16.2-x86_64-linux)
114
114
  racc (~> 1.4)
115
115
  overcommit (0.60.0)
116
116
  childprocess (>= 0.6.3, < 5)
@@ -123,39 +123,40 @@ GEM
123
123
  pry (0.14.2)
124
124
  coderay (~> 1.1)
125
125
  method_source (~> 1.0)
126
- racc (1.7.1)
127
- rack (2.2.7)
126
+ racc (1.7.3)
127
+ rack (2.2.8.1)
128
128
  rack-test (2.1.0)
129
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)
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
142
  bundler (>= 1.15.0)
143
- railties (= 6.1.7.3)
143
+ railties (= 6.1.7.7)
144
144
  sprockets-rails (>= 2.0.0)
145
- rails-dom-testing (2.0.3)
146
- activesupport (>= 4.2.0)
145
+ rails-dom-testing (2.2.0)
146
+ activesupport (>= 5.0.0)
147
+ minitest
147
148
  nokogiri (>= 1.6)
148
149
  rails-html-sanitizer (1.6.0)
149
150
  loofah (~> 2.21)
150
151
  nokogiri (~> 1.14)
151
- railties (6.1.7.3)
152
- actionpack (= 6.1.7.3)
153
- activesupport (= 6.1.7.3)
152
+ railties (6.1.7.7)
153
+ actionpack (= 6.1.7.7)
154
+ activesupport (= 6.1.7.7)
154
155
  method_source
155
156
  rake (>= 12.2)
156
157
  thor (~> 1.0)
157
158
  rainbow (3.1.1)
158
- rake (13.0.6)
159
+ rake (13.1.0)
159
160
  rb-readline (0.5.5)
160
161
  regexp_parser (2.8.1)
161
162
  rexml (3.2.5)
@@ -185,28 +186,29 @@ GEM
185
186
  rubocop-ast (1.29.0)
186
187
  parser (>= 3.2.1.0)
187
188
  ruby-progressbar (1.13.0)
188
- sprockets (4.2.0)
189
+ sprockets (4.2.1)
189
190
  concurrent-ruby (~> 1.0)
190
191
  rack (>= 2.2.4, < 4)
191
192
  sprockets-rails (3.4.2)
192
193
  actionpack (>= 5.2)
193
194
  activesupport (>= 5.2)
194
195
  sprockets (>= 3.0.0)
195
- sqlite3 (1.6.3-arm64-darwin)
196
- sqlite3 (1.6.3-x86_64-linux)
197
- thor (1.2.2)
196
+ sqlite3 (1.7.2-arm64-darwin)
197
+ sqlite3 (1.7.2-x86_64-linux)
198
+ thor (1.3.1)
198
199
  timecop (0.9.6)
199
- timeout (0.3.2)
200
+ timeout (0.4.1)
200
201
  tzinfo (2.0.6)
201
202
  concurrent-ruby (~> 1.0)
202
203
  unicode-display_width (2.4.2)
203
- websocket-driver (0.7.5)
204
+ websocket-driver (0.7.6)
204
205
  websocket-extensions (>= 0.1.0)
205
206
  websocket-extensions (0.1.5)
206
- zeitwerk (2.6.8)
207
+ zeitwerk (2.6.13)
207
208
 
208
209
  PLATFORMS
209
210
  arm64-darwin-22
211
+ arm64-darwin-23
210
212
  x86_64-linux
211
213
 
212
214
  DEPENDENCIES
@@ -220,8 +222,8 @@ DEPENDENCIES
220
222
  rspec
221
223
  rspec-core
222
224
  rubocop
223
- sqlite3 (~> 1.4)
225
+ sqlite3
224
226
  timecop
225
227
 
226
228
  BUNDLED WITH
227
- 2.4.14
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: "../"