table_saw 3.1.0 → 3.2.0

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.
Files changed (36) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ruby.yml +3 -2
  3. data/.rubocop.yml +1 -1
  4. data/.tool-versions +1 -1
  5. data/Appraisals +9 -0
  6. data/Gemfile +2 -2
  7. data/Gemfile.lock +87 -82
  8. data/exe/table-saw +1 -0
  9. data/gemfiles/activerecord_6.1.0.gemfile +5 -2
  10. data/gemfiles/activerecord_6.1.0.gemfile.lock +75 -65
  11. data/gemfiles/activerecord_7.0.0.gemfile +5 -2
  12. data/gemfiles/activerecord_7.0.0.gemfile.lock +75 -65
  13. data/gemfiles/activerecord_7.1.0.gemfile +2 -2
  14. data/gemfiles/activerecord_7.1.0.gemfile.lock +78 -76
  15. data/gemfiles/activerecord_7.2.0.gemfile +17 -0
  16. data/gemfiles/activerecord_7.2.0.gemfile.lock +221 -0
  17. data/lib/table_saw/configuration.rb +1 -1
  18. data/lib/table_saw/create_dump_file.rb +3 -3
  19. data/lib/table_saw/dependency_graph/belongs_to_directives.rb +1 -1
  20. data/lib/table_saw/dependency_graph/build.rb +2 -2
  21. data/lib/table_saw/dependency_graph/dump_table.rb +1 -1
  22. data/lib/table_saw/dependency_graph/has_many_directives.rb +1 -1
  23. data/lib/table_saw/formats/copy.rb +1 -1
  24. data/lib/table_saw/formats/insert.rb +1 -1
  25. data/lib/table_saw/manifest.rb +1 -1
  26. data/lib/table_saw/queries/execute_insert_statement.rb +2 -6
  27. data/lib/table_saw/queries/foreign_key_relationships.rb +1 -1
  28. data/lib/table_saw/queries/materialized_views.rb +1 -1
  29. data/lib/table_saw/queries/prepared_insert_statement.rb +1 -1
  30. data/lib/table_saw/queries/serial_sequences.rb +1 -1
  31. data/lib/table_saw/queries/serialize_sql_in_clause.rb +1 -5
  32. data/lib/table_saw/version.rb +1 -1
  33. data/lib/table_saw.rb +18 -2
  34. data/table_saw.gemspec +2 -2
  35. metadata +8 -7
  36. data/lib/table_saw/connection.rb +0 -30
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c486b7b157b263797373c6fcd9346e99e1e8d3d0d42bfd993b309b5f4a96032d
4
- data.tar.gz: f6b3ee4493ce2c5b740410db3b5c18e847ab2d7bd663eb0094a5420fd2d83c9b
3
+ metadata.gz: 134b095f48e6e54143d285ff2d59cd760e538b0f5a78db2bac4729110b678075
4
+ data.tar.gz: a68f17b155840a9f9351787aa783bf5f22326a9228a350c0dd72f5d428de7e50
5
5
  SHA512:
6
- metadata.gz: 8e86bc39752b2ca0a7bd7b7bf7b162a1c90583ac8e43d6c0299fff36bdd106a446b35a45c1e0a08dc7ec4fc730387de569ef830596e59744920e66224c820835
7
- data.tar.gz: 2350f1710a38280d71ac8587784dbef023685c40dc5d3c87af840bae94761127c23d0efba7da3efbe57ade1ebd1ea9827ba8d94fea6a8c0d4a08e1ca360d6955
6
+ metadata.gz: 435d2a488bdf003114963379e93c4f23e370588263a1bfda623e2cbe3b96eab9054150ed6f2dbdf4e7582fa06bf896fe472e43962fe0624b74d9997c8453d132
7
+ data.tar.gz: 6b856e4a37e79393563b3bd62086e3bbe1e6ce02b6390575d93494c910c7d4863ecf96c6f482d40bf5990bb09c0215c05d5263e7900cfd43c65bbdf42bbe083c
@@ -10,13 +10,14 @@ jobs:
10
10
  strategy:
11
11
  matrix:
12
12
  ruby:
13
- - '3.0.5'
14
13
  - '3.1.4'
15
14
  - '3.2.2'
15
+ - '3.3.0'
16
16
  activerecord:
17
17
  - '6.1.0'
18
18
  - '7.0.0'
19
19
  - '7.1.0'
20
+ - '7.2.0'
20
21
 
21
22
  env:
22
23
  BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/activerecord_${{ matrix.activerecord }}.gemfile
@@ -34,7 +35,7 @@ jobs:
34
35
  options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
35
36
 
36
37
  steps:
37
- - uses: actions/checkout@v2
38
+ - uses: actions/checkout@v4
38
39
 
39
40
  - name: Set up Ruby
40
41
  uses: ruby/setup-ruby@v1
data/.rubocop.yml CHANGED
@@ -2,7 +2,7 @@ require: rubocop-rspec
2
2
 
3
3
  AllCops:
4
4
  NewCops: enable
5
- TargetRubyVersion: 3.0
5
+ TargetRubyVersion: 3.1
6
6
  Exclude:
7
7
  - gemfiles/*
8
8
 
data/.tool-versions CHANGED
@@ -1 +1 @@
1
- ruby 3.2.2
1
+ ruby 3.3.4
data/Appraisals CHANGED
@@ -2,13 +2,22 @@
2
2
 
3
3
  appraise 'activerecord-6.1.0' do
4
4
  gem 'activerecord', '~> 6.1', '< 6.2'
5
+ gem 'base64'
6
+ gem 'bigdecimal'
7
+ gem 'mutex_m'
5
8
  end
6
9
 
7
10
  appraise 'activerecord-7.0.0' do
8
11
  gem 'activerecord', '~> 7.0', '< 7.1'
12
+ gem 'base64'
13
+ gem 'bigdecimal'
14
+ gem 'mutex_m'
9
15
  end
10
16
 
11
17
  appraise 'activerecord-7.1.0' do
12
18
  gem 'activerecord', '~> 7.1', '< 7.2'
13
19
  end
14
20
 
21
+ appraise 'activerecord-7.2.0' do
22
+ gem 'activerecord', '~> 7.2.0', '< 7.3'
23
+ end
data/Gemfile CHANGED
@@ -7,8 +7,8 @@ gemspec
7
7
 
8
8
  gem 'appraisal'
9
9
  gem 'bundler', '~> 2.0'
10
- gem 'combustion', '~> 1.3'
11
- gem 'database_cleaner', '~> 2'
10
+ gem 'combustion', '~> 1.4'
11
+ gem 'database_cleaner-active_record', '~> 2.2'
12
12
  gem 'pry'
13
13
  gem 'rake', '13.0.3'
14
14
  gem 'rspec', '~> 3.0'
data/Gemfile.lock CHANGED
@@ -1,103 +1,102 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- table_saw (3.1.0)
5
- activerecord (>= 6.0)
4
+ table_saw (3.2.0)
5
+ activerecord (>= 6.1)
6
6
  pg
7
7
  thor
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- actionpack (7.1.2)
13
- actionview (= 7.1.2)
14
- activesupport (= 7.1.2)
12
+ actionpack (7.2.0)
13
+ actionview (= 7.2.0)
14
+ activesupport (= 7.2.0)
15
15
  nokogiri (>= 1.8.5)
16
16
  racc
17
- rack (>= 2.2.4)
17
+ rack (>= 2.2.4, < 3.2)
18
18
  rack-session (>= 1.0.1)
19
19
  rack-test (>= 0.6.3)
20
20
  rails-dom-testing (~> 2.2)
21
21
  rails-html-sanitizer (~> 1.6)
22
- actionview (7.1.2)
23
- activesupport (= 7.1.2)
22
+ useragent (~> 0.16)
23
+ actionview (7.2.0)
24
+ activesupport (= 7.2.0)
24
25
  builder (~> 3.1)
25
26
  erubi (~> 1.11)
26
27
  rails-dom-testing (~> 2.2)
27
28
  rails-html-sanitizer (~> 1.6)
28
- activemodel (7.1.2)
29
- activesupport (= 7.1.2)
30
- activerecord (7.1.2)
31
- activemodel (= 7.1.2)
32
- activesupport (= 7.1.2)
29
+ activemodel (7.2.0)
30
+ activesupport (= 7.2.0)
31
+ activerecord (7.2.0)
32
+ activemodel (= 7.2.0)
33
+ activesupport (= 7.2.0)
33
34
  timeout (>= 0.4.0)
34
- activesupport (7.1.2)
35
+ activesupport (7.2.0)
35
36
  base64
36
37
  bigdecimal
37
- concurrent-ruby (~> 1.0, >= 1.0.2)
38
+ concurrent-ruby (~> 1.0, >= 1.3.1)
38
39
  connection_pool (>= 2.2.5)
39
40
  drb
40
41
  i18n (>= 1.6, < 2)
42
+ logger (>= 1.4.2)
41
43
  minitest (>= 5.1)
42
- mutex_m
43
- tzinfo (~> 2.0)
44
+ securerandom (>= 0.3)
45
+ tzinfo (~> 2.0, >= 2.0.5)
44
46
  appraisal (2.5.0)
45
47
  bundler
46
48
  rake
47
49
  thor (>= 0.14.0)
48
50
  ast (2.4.2)
49
51
  base64 (0.2.0)
50
- bigdecimal (3.1.5)
51
- builder (3.2.4)
52
+ bigdecimal (3.1.8)
53
+ builder (3.3.0)
52
54
  coderay (1.1.3)
53
- combustion (1.3.7)
55
+ combustion (1.5.0)
54
56
  activesupport (>= 3.0.0)
55
57
  railties (>= 3.0.0)
56
58
  thor (>= 0.14.6)
57
- concurrent-ruby (1.2.2)
59
+ concurrent-ruby (1.3.4)
58
60
  connection_pool (2.4.1)
59
61
  crass (1.0.6)
60
- database_cleaner (2.0.2)
61
- database_cleaner-active_record (>= 2, < 3)
62
- database_cleaner-active_record (2.1.0)
62
+ database_cleaner-active_record (2.2.0)
63
63
  activerecord (>= 5.a)
64
64
  database_cleaner-core (~> 2.0.0)
65
65
  database_cleaner-core (2.0.1)
66
- diff-lcs (1.5.0)
67
- docile (1.4.0)
68
- drb (2.2.0)
69
- ruby2_keywords
70
- erubi (1.12.0)
71
- i18n (1.14.1)
66
+ diff-lcs (1.5.1)
67
+ docile (1.4.1)
68
+ drb (2.2.1)
69
+ erubi (1.13.0)
70
+ i18n (1.14.5)
72
71
  concurrent-ruby (~> 1.0)
73
- io-console (0.7.1)
74
- irb (1.11.0)
75
- rdoc
76
- reline (>= 0.3.8)
77
- json (2.7.1)
72
+ io-console (0.7.2)
73
+ irb (1.14.0)
74
+ rdoc (>= 4.0.0)
75
+ reline (>= 0.4.2)
76
+ json (2.7.2)
78
77
  language_server-protocol (3.17.0.3)
78
+ logger (1.6.0)
79
79
  loofah (2.22.0)
80
80
  crass (~> 1.0.2)
81
81
  nokogiri (>= 1.12.0)
82
- method_source (1.0.0)
83
- mini_portile2 (2.8.5)
84
- minitest (5.20.0)
85
- mutex_m (0.2.0)
86
- nokogiri (1.15.5)
82
+ method_source (1.1.0)
83
+ mini_portile2 (2.8.7)
84
+ minitest (5.24.1)
85
+ nokogiri (1.16.7)
87
86
  mini_portile2 (~> 2.8.2)
88
87
  racc (~> 1.4)
89
- parallel (1.24.0)
90
- parser (3.2.2.4)
88
+ parallel (1.26.1)
89
+ parser (3.3.4.2)
91
90
  ast (~> 2.4.1)
92
91
  racc
93
- pg (1.5.4)
92
+ pg (1.5.7)
94
93
  pry (0.14.2)
95
94
  coderay (~> 1.1)
96
95
  method_source (~> 1.0)
97
96
  psych (5.1.2)
98
97
  stringio
99
- racc (1.7.3)
100
- rack (3.0.8)
98
+ racc (1.8.1)
99
+ rack (3.1.7)
101
100
  rack-session (2.0.0)
102
101
  rack (>= 3.0.0)
103
102
  rack-test (2.1.0)
@@ -112,75 +111,81 @@ GEM
112
111
  rails-html-sanitizer (1.6.0)
113
112
  loofah (~> 2.21)
114
113
  nokogiri (~> 1.14)
115
- railties (7.1.2)
116
- actionpack (= 7.1.2)
117
- activesupport (= 7.1.2)
118
- irb
114
+ railties (7.2.0)
115
+ actionpack (= 7.2.0)
116
+ activesupport (= 7.2.0)
117
+ irb (~> 1.13)
119
118
  rackup (>= 1.0.0)
120
119
  rake (>= 12.2)
121
120
  thor (~> 1.0, >= 1.2.2)
122
121
  zeitwerk (~> 2.6)
123
122
  rainbow (3.1.1)
124
123
  rake (13.0.3)
125
- rdoc (6.6.2)
124
+ rdoc (6.7.0)
126
125
  psych (>= 4.0.0)
127
- regexp_parser (2.8.3)
128
- reline (0.4.1)
126
+ regexp_parser (2.9.2)
127
+ reline (0.5.9)
129
128
  io-console (~> 0.5)
130
- rexml (3.2.6)
131
- rspec (3.12.0)
132
- rspec-core (~> 3.12.0)
133
- rspec-expectations (~> 3.12.0)
134
- rspec-mocks (~> 3.12.0)
135
- rspec-core (3.12.2)
136
- rspec-support (~> 3.12.0)
137
- rspec-expectations (3.12.3)
129
+ rexml (3.3.4)
130
+ strscan
131
+ rspec (3.13.0)
132
+ rspec-core (~> 3.13.0)
133
+ rspec-expectations (~> 3.13.0)
134
+ rspec-mocks (~> 3.13.0)
135
+ rspec-core (3.13.0)
136
+ rspec-support (~> 3.13.0)
137
+ rspec-expectations (3.13.1)
138
138
  diff-lcs (>= 1.2.0, < 2.0)
139
- rspec-support (~> 3.12.0)
140
- rspec-mocks (3.12.6)
139
+ rspec-support (~> 3.13.0)
140
+ rspec-mocks (3.13.1)
141
141
  diff-lcs (>= 1.2.0, < 2.0)
142
- rspec-support (~> 3.12.0)
143
- rspec-support (3.12.1)
144
- rubocop (1.59.0)
142
+ rspec-support (~> 3.13.0)
143
+ rspec-support (3.13.1)
144
+ rubocop (1.65.1)
145
145
  json (~> 2.3)
146
146
  language_server-protocol (>= 3.17.0)
147
147
  parallel (~> 1.10)
148
- parser (>= 3.2.2.4)
148
+ parser (>= 3.3.0.2)
149
149
  rainbow (>= 2.2.2, < 4.0)
150
- regexp_parser (>= 1.8, < 3.0)
150
+ regexp_parser (>= 2.4, < 3.0)
151
151
  rexml (>= 3.2.5, < 4.0)
152
- rubocop-ast (>= 1.30.0, < 2.0)
152
+ rubocop-ast (>= 1.31.1, < 2.0)
153
153
  ruby-progressbar (~> 1.7)
154
154
  unicode-display_width (>= 2.4.0, < 3.0)
155
- rubocop-ast (1.30.0)
156
- parser (>= 3.2.1.0)
157
- rubocop-capybara (2.19.0)
155
+ rubocop-ast (1.32.0)
156
+ parser (>= 3.3.1.0)
157
+ rubocop-capybara (2.21.0)
158
158
  rubocop (~> 1.41)
159
- rubocop-factory_bot (2.24.0)
160
- rubocop (~> 1.33)
161
- rubocop-rspec (2.25.0)
159
+ rubocop-factory_bot (2.26.1)
160
+ rubocop (~> 1.61)
161
+ rubocop-rspec (2.31.0)
162
162
  rubocop (~> 1.40)
163
163
  rubocop-capybara (~> 2.17)
164
164
  rubocop-factory_bot (~> 2.22)
165
+ rubocop-rspec_rails (~> 2.28)
166
+ rubocop-rspec_rails (2.29.1)
167
+ rubocop (~> 1.61)
165
168
  ruby-progressbar (1.13.0)
166
- ruby2_keywords (0.0.5)
167
- scenic (1.7.0)
169
+ scenic (1.8.0)
168
170
  activerecord (>= 4.0.0)
169
171
  railties (>= 4.0.0)
172
+ securerandom (0.3.1)
170
173
  simplecov (0.22.0)
171
174
  docile (~> 1.1)
172
175
  simplecov-html (~> 0.11)
173
176
  simplecov_json_formatter (~> 0.1)
174
177
  simplecov-html (0.12.3)
175
178
  simplecov_json_formatter (0.1.4)
176
- stringio (3.1.0)
177
- thor (1.3.0)
179
+ stringio (3.1.1)
180
+ strscan (3.1.0)
181
+ thor (1.3.1)
178
182
  timeout (0.4.1)
179
183
  tzinfo (2.0.6)
180
184
  concurrent-ruby (~> 1.0)
181
185
  unicode-display_width (2.5.0)
186
+ useragent (0.16.10)
182
187
  webrick (1.8.1)
183
- zeitwerk (2.6.12)
188
+ zeitwerk (2.6.17)
184
189
 
185
190
  PLATFORMS
186
191
  ruby
@@ -188,8 +193,8 @@ PLATFORMS
188
193
  DEPENDENCIES
189
194
  appraisal
190
195
  bundler (~> 2.0)
191
- combustion (~> 1.3)
192
- database_cleaner (~> 2)
196
+ combustion (~> 1.4)
197
+ database_cleaner-active_record (~> 2.2)
193
198
  pry
194
199
  rake (= 13.0.3)
195
200
  rspec (~> 3.0)
@@ -199,4 +204,4 @@ DEPENDENCIES
199
204
  table_saw!
200
205
 
201
206
  BUNDLED WITH
202
- 2.4.13
207
+ 2.5.9
data/exe/table-saw CHANGED
@@ -29,6 +29,7 @@ class CLI < Thor
29
29
  desc: 'This option takes a hash to override variables provided in the manifest'
30
30
  def dump
31
31
  TableSaw.configure(options.to_hash)
32
+ ::ActiveRecord::Base.establish_connection(TableSaw.configuration.connection)
32
33
  records = TableSaw::DependencyGraph::Build.new(TableSaw::Manifest.instance).call
33
34
  TableSaw::CreateDumpFile.new(records, output: options[:output], format: options[:format]).call
34
35
  end
@@ -4,8 +4,8 @@ source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
6
  gem "bundler", "~> 2.0"
7
- gem "combustion", "~> 1.3"
8
- gem "database_cleaner", "~> 2"
7
+ gem "combustion", "~> 1.4"
8
+ gem "database_cleaner-active_record", "~> 2.2"
9
9
  gem "pry"
10
10
  gem "rake", "13.0.3"
11
11
  gem "rspec", "~> 3.0"
@@ -13,5 +13,8 @@ gem "rubocop-rspec", "~> 2.3"
13
13
  gem "scenic", "~> 1.5"
14
14
  gem "simplecov", "~> 0.16"
15
15
  gem "activerecord", "~> 6.1", "< 6.2"
16
+ gem "base64"
17
+ gem "bigdecimal"
18
+ gem "mutex_m"
16
19
 
17
20
  gemspec path: "../"
@@ -1,33 +1,33 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- table_saw (3.1.0)
5
- activerecord (>= 6.0)
4
+ table_saw (3.2.0)
5
+ activerecord (>= 6.1)
6
6
  pg
7
7
  thor
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- actionpack (6.1.7.6)
13
- actionview (= 6.1.7.6)
14
- activesupport (= 6.1.7.6)
12
+ actionpack (6.1.7.8)
13
+ actionview (= 6.1.7.8)
14
+ activesupport (= 6.1.7.8)
15
15
  rack (~> 2.0, >= 2.0.9)
16
16
  rack-test (>= 0.6.3)
17
17
  rails-dom-testing (~> 2.0)
18
18
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
19
- actionview (6.1.7.6)
20
- activesupport (= 6.1.7.6)
19
+ actionview (6.1.7.8)
20
+ activesupport (= 6.1.7.8)
21
21
  builder (~> 3.1)
22
22
  erubi (~> 1.4)
23
23
  rails-dom-testing (~> 2.0)
24
24
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
25
- activemodel (6.1.7.6)
26
- activesupport (= 6.1.7.6)
27
- activerecord (6.1.7.6)
28
- activemodel (= 6.1.7.6)
29
- activesupport (= 6.1.7.6)
30
- activesupport (6.1.7.6)
25
+ activemodel (6.1.7.8)
26
+ activesupport (= 6.1.7.8)
27
+ activerecord (6.1.7.8)
28
+ activemodel (= 6.1.7.8)
29
+ activesupport (= 6.1.7.8)
30
+ activesupport (6.1.7.8)
31
31
  concurrent-ruby (~> 1.0, >= 1.0.2)
32
32
  i18n (>= 1.6, < 2)
33
33
  minitest (>= 5.1)
@@ -38,46 +38,47 @@ GEM
38
38
  rake
39
39
  thor (>= 0.14.0)
40
40
  ast (2.4.2)
41
- builder (3.2.4)
41
+ base64 (0.2.0)
42
+ bigdecimal (3.1.8)
43
+ builder (3.3.0)
42
44
  coderay (1.1.3)
43
- combustion (1.3.7)
45
+ combustion (1.5.0)
44
46
  activesupport (>= 3.0.0)
45
47
  railties (>= 3.0.0)
46
48
  thor (>= 0.14.6)
47
- concurrent-ruby (1.2.2)
49
+ concurrent-ruby (1.3.4)
48
50
  crass (1.0.6)
49
- database_cleaner (2.0.2)
50
- database_cleaner-active_record (>= 2, < 3)
51
- database_cleaner-active_record (2.1.0)
51
+ database_cleaner-active_record (2.2.0)
52
52
  activerecord (>= 5.a)
53
53
  database_cleaner-core (~> 2.0.0)
54
54
  database_cleaner-core (2.0.1)
55
- diff-lcs (1.5.0)
56
- docile (1.4.0)
57
- erubi (1.12.0)
58
- i18n (1.14.1)
55
+ diff-lcs (1.5.1)
56
+ docile (1.4.1)
57
+ erubi (1.13.0)
58
+ i18n (1.14.5)
59
59
  concurrent-ruby (~> 1.0)
60
- json (2.7.1)
60
+ json (2.7.2)
61
61
  language_server-protocol (3.17.0.3)
62
62
  loofah (2.22.0)
63
63
  crass (~> 1.0.2)
64
64
  nokogiri (>= 1.12.0)
65
- method_source (1.0.0)
66
- minitest (5.20.0)
67
- nokogiri (1.15.5-x86_64-darwin)
65
+ method_source (1.1.0)
66
+ minitest (5.24.1)
67
+ mutex_m (0.2.0)
68
+ nokogiri (1.16.7-x86_64-darwin)
68
69
  racc (~> 1.4)
69
- nokogiri (1.15.5-x86_64-linux)
70
+ nokogiri (1.16.7-x86_64-linux)
70
71
  racc (~> 1.4)
71
- parallel (1.24.0)
72
- parser (3.2.2.4)
72
+ parallel (1.26.1)
73
+ parser (3.3.4.2)
73
74
  ast (~> 2.4.1)
74
75
  racc
75
- pg (1.5.4)
76
+ pg (1.5.7)
76
77
  pry (0.14.2)
77
78
  coderay (~> 1.1)
78
79
  method_source (~> 1.0)
79
- racc (1.7.3)
80
- rack (2.2.8)
80
+ racc (1.8.1)
81
+ rack (2.2.9)
81
82
  rack-test (2.1.0)
82
83
  rack (>= 1.3)
83
84
  rails-dom-testing (2.2.0)
@@ -87,52 +88,56 @@ GEM
87
88
  rails-html-sanitizer (1.6.0)
88
89
  loofah (~> 2.21)
89
90
  nokogiri (~> 1.14)
90
- railties (6.1.7.6)
91
- actionpack (= 6.1.7.6)
92
- activesupport (= 6.1.7.6)
91
+ railties (6.1.7.8)
92
+ actionpack (= 6.1.7.8)
93
+ activesupport (= 6.1.7.8)
93
94
  method_source
94
95
  rake (>= 12.2)
95
96
  thor (~> 1.0)
96
97
  rainbow (3.1.1)
97
98
  rake (13.0.3)
98
- regexp_parser (2.8.3)
99
- rexml (3.2.6)
100
- rspec (3.12.0)
101
- rspec-core (~> 3.12.0)
102
- rspec-expectations (~> 3.12.0)
103
- rspec-mocks (~> 3.12.0)
104
- rspec-core (3.12.2)
105
- rspec-support (~> 3.12.0)
106
- rspec-expectations (3.12.3)
99
+ regexp_parser (2.9.2)
100
+ rexml (3.3.4)
101
+ strscan
102
+ rspec (3.13.0)
103
+ rspec-core (~> 3.13.0)
104
+ rspec-expectations (~> 3.13.0)
105
+ rspec-mocks (~> 3.13.0)
106
+ rspec-core (3.13.0)
107
+ rspec-support (~> 3.13.0)
108
+ rspec-expectations (3.13.1)
107
109
  diff-lcs (>= 1.2.0, < 2.0)
108
- rspec-support (~> 3.12.0)
109
- rspec-mocks (3.12.6)
110
+ rspec-support (~> 3.13.0)
111
+ rspec-mocks (3.13.1)
110
112
  diff-lcs (>= 1.2.0, < 2.0)
111
- rspec-support (~> 3.12.0)
112
- rspec-support (3.12.1)
113
- rubocop (1.59.0)
113
+ rspec-support (~> 3.13.0)
114
+ rspec-support (3.13.1)
115
+ rubocop (1.65.1)
114
116
  json (~> 2.3)
115
117
  language_server-protocol (>= 3.17.0)
116
118
  parallel (~> 1.10)
117
- parser (>= 3.2.2.4)
119
+ parser (>= 3.3.0.2)
118
120
  rainbow (>= 2.2.2, < 4.0)
119
- regexp_parser (>= 1.8, < 3.0)
121
+ regexp_parser (>= 2.4, < 3.0)
120
122
  rexml (>= 3.2.5, < 4.0)
121
- rubocop-ast (>= 1.30.0, < 2.0)
123
+ rubocop-ast (>= 1.31.1, < 2.0)
122
124
  ruby-progressbar (~> 1.7)
123
125
  unicode-display_width (>= 2.4.0, < 3.0)
124
- rubocop-ast (1.30.0)
125
- parser (>= 3.2.1.0)
126
- rubocop-capybara (2.19.0)
126
+ rubocop-ast (1.32.0)
127
+ parser (>= 3.3.1.0)
128
+ rubocop-capybara (2.21.0)
127
129
  rubocop (~> 1.41)
128
- rubocop-factory_bot (2.24.0)
129
- rubocop (~> 1.33)
130
- rubocop-rspec (2.25.0)
130
+ rubocop-factory_bot (2.26.1)
131
+ rubocop (~> 1.61)
132
+ rubocop-rspec (2.31.0)
131
133
  rubocop (~> 1.40)
132
134
  rubocop-capybara (~> 2.17)
133
135
  rubocop-factory_bot (~> 2.22)
136
+ rubocop-rspec_rails (~> 2.28)
137
+ rubocop-rspec_rails (2.29.1)
138
+ rubocop (~> 1.61)
134
139
  ruby-progressbar (1.13.0)
135
- scenic (1.7.0)
140
+ scenic (1.8.0)
136
141
  activerecord (>= 4.0.0)
137
142
  railties (>= 4.0.0)
138
143
  simplecov (0.22.0)
@@ -141,22 +146,27 @@ GEM
141
146
  simplecov_json_formatter (~> 0.1)
142
147
  simplecov-html (0.12.3)
143
148
  simplecov_json_formatter (0.1.4)
144
- thor (1.3.0)
149
+ strscan (3.1.0)
150
+ thor (1.3.1)
145
151
  tzinfo (2.0.6)
146
152
  concurrent-ruby (~> 1.0)
147
153
  unicode-display_width (2.5.0)
148
- zeitwerk (2.6.12)
154
+ zeitwerk (2.6.17)
149
155
 
150
156
  PLATFORMS
151
157
  x86_64-darwin-22
158
+ x86_64-darwin-23
152
159
  x86_64-linux
153
160
 
154
161
  DEPENDENCIES
155
162
  activerecord (~> 6.1, < 6.2)
156
163
  appraisal
164
+ base64
165
+ bigdecimal
157
166
  bundler (~> 2.0)
158
- combustion (~> 1.3)
159
- database_cleaner (~> 2)
167
+ combustion (~> 1.4)
168
+ database_cleaner-active_record (~> 2.2)
169
+ mutex_m
160
170
  pry
161
171
  rake (= 13.0.3)
162
172
  rspec (~> 3.0)
@@ -166,4 +176,4 @@ DEPENDENCIES
166
176
  table_saw!
167
177
 
168
178
  BUNDLED WITH
169
- 2.4.13
179
+ 2.5.4
@@ -4,8 +4,8 @@ source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
6
  gem "bundler", "~> 2.0"
7
- gem "combustion", "~> 1.3"
8
- gem "database_cleaner", "~> 2"
7
+ gem "combustion", "~> 1.4"
8
+ gem "database_cleaner-active_record", "~> 2.2"
9
9
  gem "pry"
10
10
  gem "rake", "13.0.3"
11
11
  gem "rspec", "~> 3.0"
@@ -13,5 +13,8 @@ gem "rubocop-rspec", "~> 2.3"
13
13
  gem "scenic", "~> 1.5"
14
14
  gem "simplecov", "~> 0.16"
15
15
  gem "activerecord", "~> 7.0", "< 7.1"
16
+ gem "base64"
17
+ gem "bigdecimal"
18
+ gem "mutex_m"
16
19
 
17
20
  gemspec path: "../"