table_saw 3.0.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 +4 -2
  3. data/.rubocop.yml +1 -1
  4. data/.tool-versions +1 -1
  5. data/Appraisals +14 -0
  6. data/Gemfile +2 -2
  7. data/Gemfile.lock +129 -84
  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 +89 -72
  11. data/gemfiles/activerecord_7.0.0.gemfile +5 -2
  12. data/gemfiles/activerecord_7.0.0.gemfile.lock +89 -72
  13. data/gemfiles/activerecord_7.1.0.gemfile +17 -0
  14. data/gemfiles/activerecord_7.1.0.gemfile.lock +206 -0
  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 -5
  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 +10 -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: 5e8e8f428d4b3d28ddec794d07a0d052e6280bfd96ee0b58735b3bcefa5a7bee
4
- data.tar.gz: 64249bc2ae252e9b361c32b376f1679837ac1fd82bde70b11eda9fad66050a00
3
+ metadata.gz: 134b095f48e6e54143d285ff2d59cd760e538b0f5a78db2bac4729110b678075
4
+ data.tar.gz: a68f17b155840a9f9351787aa783bf5f22326a9228a350c0dd72f5d428de7e50
5
5
  SHA512:
6
- metadata.gz: 11b993bf2a9f723783b3f67648af15b794b807678db845b6c57b1ac8e5b57762ac41a3c1530696f5f3f99d6a7649061a22a88267aab23fb4e5cf158533f014e6
7
- data.tar.gz: 84eb90d309a2dc4a8ddd04c4898c748f81f6c2f62223780b9e5d272913d2e990c840880e49e17dbe8832726b0eb6ea38f7f21970a44fd49ebd85d3b7e12b91e6
6
+ metadata.gz: 435d2a488bdf003114963379e93c4f23e370588263a1bfda623e2cbe3b96eab9054150ed6f2dbdf4e7582fa06bf896fe472e43962fe0624b74d9997c8453d132
7
+ data.tar.gz: 6b856e4a37e79393563b3bd62086e3bbe1e6ce02b6390575d93494c910c7d4863ecf96c6f482d40bf5990bb09c0215c05d5263e7900cfd43c65bbdf42bbe083c
@@ -10,12 +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
+ - '7.1.0'
20
+ - '7.2.0'
19
21
 
20
22
  env:
21
23
  BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/activerecord_${{ matrix.activerecord }}.gemfile
@@ -33,7 +35,7 @@ jobs:
33
35
  options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
34
36
 
35
37
  steps:
36
- - uses: actions/checkout@v2
38
+ - uses: actions/checkout@v4
37
39
 
38
40
  - name: Set up Ruby
39
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,8 +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'
15
+ end
16
+
17
+ appraise 'activerecord-7.1.0' do
18
+ gem 'activerecord', '~> 7.1', '< 7.2'
19
+ end
20
+
21
+ appraise 'activerecord-7.2.0' do
22
+ gem 'activerecord', '~> 7.2.0', '< 7.3'
9
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,146 +1,191 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- table_saw (3.0.0)
5
- activerecord (>= 5.2)
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.0.5)
13
- actionview (= 7.0.5)
14
- activesupport (= 7.0.5)
15
- rack (~> 2.0, >= 2.2.4)
12
+ actionpack (7.2.0)
13
+ actionview (= 7.2.0)
14
+ activesupport (= 7.2.0)
15
+ nokogiri (>= 1.8.5)
16
+ racc
17
+ rack (>= 2.2.4, < 3.2)
18
+ rack-session (>= 1.0.1)
16
19
  rack-test (>= 0.6.3)
17
- rails-dom-testing (~> 2.0)
18
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
19
- actionview (7.0.5)
20
- activesupport (= 7.0.5)
20
+ rails-dom-testing (~> 2.2)
21
+ rails-html-sanitizer (~> 1.6)
22
+ useragent (~> 0.16)
23
+ actionview (7.2.0)
24
+ activesupport (= 7.2.0)
21
25
  builder (~> 3.1)
22
- erubi (~> 1.4)
23
- rails-dom-testing (~> 2.0)
24
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
25
- activemodel (7.0.5)
26
- activesupport (= 7.0.5)
27
- activerecord (7.0.5)
28
- activemodel (= 7.0.5)
29
- activesupport (= 7.0.5)
30
- activesupport (7.0.5)
31
- concurrent-ruby (~> 1.0, >= 1.0.2)
26
+ erubi (~> 1.11)
27
+ rails-dom-testing (~> 2.2)
28
+ rails-html-sanitizer (~> 1.6)
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)
34
+ timeout (>= 0.4.0)
35
+ activesupport (7.2.0)
36
+ base64
37
+ bigdecimal
38
+ concurrent-ruby (~> 1.0, >= 1.3.1)
39
+ connection_pool (>= 2.2.5)
40
+ drb
32
41
  i18n (>= 1.6, < 2)
42
+ logger (>= 1.4.2)
33
43
  minitest (>= 5.1)
34
- tzinfo (~> 2.0)
35
- appraisal (2.4.1)
44
+ securerandom (>= 0.3)
45
+ tzinfo (~> 2.0, >= 2.0.5)
46
+ appraisal (2.5.0)
36
47
  bundler
37
48
  rake
38
49
  thor (>= 0.14.0)
39
50
  ast (2.4.2)
40
- builder (3.2.4)
51
+ base64 (0.2.0)
52
+ bigdecimal (3.1.8)
53
+ builder (3.3.0)
41
54
  coderay (1.1.3)
42
- combustion (1.3.7)
55
+ combustion (1.5.0)
43
56
  activesupport (>= 3.0.0)
44
57
  railties (>= 3.0.0)
45
58
  thor (>= 0.14.6)
46
- concurrent-ruby (1.2.2)
59
+ concurrent-ruby (1.3.4)
60
+ connection_pool (2.4.1)
47
61
  crass (1.0.6)
48
- database_cleaner (2.0.2)
49
- database_cleaner-active_record (>= 2, < 3)
50
- database_cleaner-active_record (2.1.0)
62
+ database_cleaner-active_record (2.2.0)
51
63
  activerecord (>= 5.a)
52
64
  database_cleaner-core (~> 2.0.0)
53
65
  database_cleaner-core (2.0.1)
54
- diff-lcs (1.5.0)
55
- docile (1.4.0)
56
- erubi (1.12.0)
57
- i18n (1.13.0)
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)
58
71
  concurrent-ruby (~> 1.0)
59
- json (2.6.3)
60
- loofah (2.21.3)
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)
77
+ language_server-protocol (3.17.0.3)
78
+ logger (1.6.0)
79
+ loofah (2.22.0)
61
80
  crass (~> 1.0.2)
62
81
  nokogiri (>= 1.12.0)
63
- method_source (1.0.0)
64
- mini_portile2 (2.8.2)
65
- minitest (5.18.0)
66
- nokogiri (1.15.2)
82
+ method_source (1.1.0)
83
+ mini_portile2 (2.8.7)
84
+ minitest (5.24.1)
85
+ nokogiri (1.16.7)
67
86
  mini_portile2 (~> 2.8.2)
68
87
  racc (~> 1.4)
69
- parallel (1.23.0)
70
- parser (3.2.2.1)
88
+ parallel (1.26.1)
89
+ parser (3.3.4.2)
71
90
  ast (~> 2.4.1)
72
- pg (1.5.3)
91
+ racc
92
+ pg (1.5.7)
73
93
  pry (0.14.2)
74
94
  coderay (~> 1.1)
75
95
  method_source (~> 1.0)
76
- racc (1.6.2)
77
- rack (2.2.7)
96
+ psych (5.1.2)
97
+ stringio
98
+ racc (1.8.1)
99
+ rack (3.1.7)
100
+ rack-session (2.0.0)
101
+ rack (>= 3.0.0)
78
102
  rack-test (2.1.0)
79
103
  rack (>= 1.3)
80
- rails-dom-testing (2.0.3)
81
- activesupport (>= 4.2.0)
104
+ rackup (2.1.0)
105
+ rack (>= 3)
106
+ webrick (~> 1.8)
107
+ rails-dom-testing (2.2.0)
108
+ activesupport (>= 5.0.0)
109
+ minitest
82
110
  nokogiri (>= 1.6)
83
- rails-html-sanitizer (1.5.0)
84
- loofah (~> 2.19, >= 2.19.1)
85
- railties (7.0.5)
86
- actionpack (= 7.0.5)
87
- activesupport (= 7.0.5)
88
- method_source
111
+ rails-html-sanitizer (1.6.0)
112
+ loofah (~> 2.21)
113
+ nokogiri (~> 1.14)
114
+ railties (7.2.0)
115
+ actionpack (= 7.2.0)
116
+ activesupport (= 7.2.0)
117
+ irb (~> 1.13)
118
+ rackup (>= 1.0.0)
89
119
  rake (>= 12.2)
90
- thor (~> 1.0)
91
- zeitwerk (~> 2.5)
120
+ thor (~> 1.0, >= 1.2.2)
121
+ zeitwerk (~> 2.6)
92
122
  rainbow (3.1.1)
93
123
  rake (13.0.3)
94
- regexp_parser (2.8.0)
95
- rexml (3.2.5)
96
- rspec (3.12.0)
97
- rspec-core (~> 3.12.0)
98
- rspec-expectations (~> 3.12.0)
99
- rspec-mocks (~> 3.12.0)
100
- rspec-core (3.12.2)
101
- rspec-support (~> 3.12.0)
102
- rspec-expectations (3.12.3)
124
+ rdoc (6.7.0)
125
+ psych (>= 4.0.0)
126
+ regexp_parser (2.9.2)
127
+ reline (0.5.9)
128
+ io-console (~> 0.5)
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)
103
138
  diff-lcs (>= 1.2.0, < 2.0)
104
- rspec-support (~> 3.12.0)
105
- rspec-mocks (3.12.5)
139
+ rspec-support (~> 3.13.0)
140
+ rspec-mocks (3.13.1)
106
141
  diff-lcs (>= 1.2.0, < 2.0)
107
- rspec-support (~> 3.12.0)
108
- rspec-support (3.12.0)
109
- rubocop (1.51.0)
142
+ rspec-support (~> 3.13.0)
143
+ rspec-support (3.13.1)
144
+ rubocop (1.65.1)
110
145
  json (~> 2.3)
146
+ language_server-protocol (>= 3.17.0)
111
147
  parallel (~> 1.10)
112
- parser (>= 3.2.0.0)
148
+ parser (>= 3.3.0.2)
113
149
  rainbow (>= 2.2.2, < 4.0)
114
- regexp_parser (>= 1.8, < 3.0)
150
+ regexp_parser (>= 2.4, < 3.0)
115
151
  rexml (>= 3.2.5, < 4.0)
116
- rubocop-ast (>= 1.28.0, < 2.0)
152
+ rubocop-ast (>= 1.31.1, < 2.0)
117
153
  ruby-progressbar (~> 1.7)
118
154
  unicode-display_width (>= 2.4.0, < 3.0)
119
- rubocop-ast (1.28.1)
120
- parser (>= 3.2.1.0)
121
- rubocop-capybara (2.18.0)
155
+ rubocop-ast (1.32.0)
156
+ parser (>= 3.3.1.0)
157
+ rubocop-capybara (2.21.0)
122
158
  rubocop (~> 1.41)
123
- rubocop-factory_bot (2.23.1)
124
- rubocop (~> 1.33)
125
- rubocop-rspec (2.22.0)
126
- rubocop (~> 1.33)
159
+ rubocop-factory_bot (2.26.1)
160
+ rubocop (~> 1.61)
161
+ rubocop-rspec (2.31.0)
162
+ rubocop (~> 1.40)
127
163
  rubocop-capybara (~> 2.17)
128
164
  rubocop-factory_bot (~> 2.22)
165
+ rubocop-rspec_rails (~> 2.28)
166
+ rubocop-rspec_rails (2.29.1)
167
+ rubocop (~> 1.61)
129
168
  ruby-progressbar (1.13.0)
130
- scenic (1.7.0)
169
+ scenic (1.8.0)
131
170
  activerecord (>= 4.0.0)
132
171
  railties (>= 4.0.0)
172
+ securerandom (0.3.1)
133
173
  simplecov (0.22.0)
134
174
  docile (~> 1.1)
135
175
  simplecov-html (~> 0.11)
136
176
  simplecov_json_formatter (~> 0.1)
137
177
  simplecov-html (0.12.3)
138
178
  simplecov_json_formatter (0.1.4)
139
- thor (1.2.2)
179
+ stringio (3.1.1)
180
+ strscan (3.1.0)
181
+ thor (1.3.1)
182
+ timeout (0.4.1)
140
183
  tzinfo (2.0.6)
141
184
  concurrent-ruby (~> 1.0)
142
- unicode-display_width (2.4.2)
143
- zeitwerk (2.6.8)
185
+ unicode-display_width (2.5.0)
186
+ useragent (0.16.10)
187
+ webrick (1.8.1)
188
+ zeitwerk (2.6.17)
144
189
 
145
190
  PLATFORMS
146
191
  ruby
@@ -148,8 +193,8 @@ PLATFORMS
148
193
  DEPENDENCIES
149
194
  appraisal
150
195
  bundler (~> 2.0)
151
- combustion (~> 1.3)
152
- database_cleaner (~> 2)
196
+ combustion (~> 1.4)
197
+ database_cleaner-active_record (~> 2.2)
153
198
  pry
154
199
  rake (= 13.0.3)
155
200
  rspec (~> 3.0)
@@ -159,4 +204,4 @@ DEPENDENCIES
159
204
  table_saw!
160
205
 
161
206
  BUNDLED WITH
162
- 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,131 +1,143 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- table_saw (3.0.0)
5
- activerecord (>= 5.2)
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.3)
13
- actionview (= 6.1.7.3)
14
- activesupport (= 6.1.7.3)
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.3)
20
- activesupport (= 6.1.7.3)
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.3)
26
- activesupport (= 6.1.7.3)
27
- activerecord (6.1.7.3)
28
- activemodel (= 6.1.7.3)
29
- activesupport (= 6.1.7.3)
30
- activesupport (6.1.7.3)
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)
34
34
  tzinfo (~> 2.0)
35
35
  zeitwerk (~> 2.3)
36
- appraisal (2.4.1)
36
+ appraisal (2.5.0)
37
37
  bundler
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.13.0)
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.6.3)
61
- loofah (2.21.3)
60
+ json (2.7.2)
61
+ language_server-protocol (3.17.0.3)
62
+ loofah (2.22.0)
62
63
  crass (~> 1.0.2)
63
64
  nokogiri (>= 1.12.0)
64
- method_source (1.0.0)
65
- minitest (5.18.0)
66
- nokogiri (1.15.2-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)
67
69
  racc (~> 1.4)
68
- parallel (1.23.0)
69
- parser (3.2.2.1)
70
+ nokogiri (1.16.7-x86_64-linux)
71
+ racc (~> 1.4)
72
+ parallel (1.26.1)
73
+ parser (3.3.4.2)
70
74
  ast (~> 2.4.1)
71
- pg (1.5.3)
75
+ racc
76
+ pg (1.5.7)
72
77
  pry (0.14.2)
73
78
  coderay (~> 1.1)
74
79
  method_source (~> 1.0)
75
- racc (1.6.2)
76
- rack (2.2.7)
80
+ racc (1.8.1)
81
+ rack (2.2.9)
77
82
  rack-test (2.1.0)
78
83
  rack (>= 1.3)
79
- rails-dom-testing (2.0.3)
80
- activesupport (>= 4.2.0)
84
+ rails-dom-testing (2.2.0)
85
+ activesupport (>= 5.0.0)
86
+ minitest
81
87
  nokogiri (>= 1.6)
82
- rails-html-sanitizer (1.5.0)
83
- loofah (~> 2.19, >= 2.19.1)
84
- railties (6.1.7.3)
85
- actionpack (= 6.1.7.3)
86
- activesupport (= 6.1.7.3)
88
+ rails-html-sanitizer (1.6.0)
89
+ loofah (~> 2.21)
90
+ nokogiri (~> 1.14)
91
+ railties (6.1.7.8)
92
+ actionpack (= 6.1.7.8)
93
+ activesupport (= 6.1.7.8)
87
94
  method_source
88
95
  rake (>= 12.2)
89
96
  thor (~> 1.0)
90
97
  rainbow (3.1.1)
91
98
  rake (13.0.3)
92
- regexp_parser (2.8.0)
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)
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)
101
109
  diff-lcs (>= 1.2.0, < 2.0)
102
- rspec-support (~> 3.12.0)
103
- rspec-mocks (3.12.5)
110
+ rspec-support (~> 3.13.0)
111
+ rspec-mocks (3.13.1)
104
112
  diff-lcs (>= 1.2.0, < 2.0)
105
- rspec-support (~> 3.12.0)
106
- rspec-support (3.12.0)
107
- rubocop (1.51.0)
113
+ rspec-support (~> 3.13.0)
114
+ rspec-support (3.13.1)
115
+ rubocop (1.65.1)
108
116
  json (~> 2.3)
117
+ language_server-protocol (>= 3.17.0)
109
118
  parallel (~> 1.10)
110
- parser (>= 3.2.0.0)
119
+ parser (>= 3.3.0.2)
111
120
  rainbow (>= 2.2.2, < 4.0)
112
- regexp_parser (>= 1.8, < 3.0)
121
+ regexp_parser (>= 2.4, < 3.0)
113
122
  rexml (>= 3.2.5, < 4.0)
114
- rubocop-ast (>= 1.28.0, < 2.0)
123
+ rubocop-ast (>= 1.31.1, < 2.0)
115
124
  ruby-progressbar (~> 1.7)
116
125
  unicode-display_width (>= 2.4.0, < 3.0)
117
- rubocop-ast (1.28.1)
118
- parser (>= 3.2.1.0)
119
- rubocop-capybara (2.18.0)
126
+ rubocop-ast (1.32.0)
127
+ parser (>= 3.3.1.0)
128
+ rubocop-capybara (2.21.0)
120
129
  rubocop (~> 1.41)
121
- rubocop-factory_bot (2.23.1)
122
- rubocop (~> 1.33)
123
- rubocop-rspec (2.22.0)
124
- rubocop (~> 1.33)
130
+ rubocop-factory_bot (2.26.1)
131
+ rubocop (~> 1.61)
132
+ rubocop-rspec (2.31.0)
133
+ rubocop (~> 1.40)
125
134
  rubocop-capybara (~> 2.17)
126
135
  rubocop-factory_bot (~> 2.22)
136
+ rubocop-rspec_rails (~> 2.28)
137
+ rubocop-rspec_rails (2.29.1)
138
+ rubocop (~> 1.61)
127
139
  ruby-progressbar (1.13.0)
128
- scenic (1.7.0)
140
+ scenic (1.8.0)
129
141
  activerecord (>= 4.0.0)
130
142
  railties (>= 4.0.0)
131
143
  simplecov (0.22.0)
@@ -134,22 +146,27 @@ GEM
134
146
  simplecov_json_formatter (~> 0.1)
135
147
  simplecov-html (0.12.3)
136
148
  simplecov_json_formatter (0.1.4)
137
- thor (1.2.2)
149
+ strscan (3.1.0)
150
+ thor (1.3.1)
138
151
  tzinfo (2.0.6)
139
152
  concurrent-ruby (~> 1.0)
140
- unicode-display_width (2.4.2)
141
- zeitwerk (2.6.8)
153
+ unicode-display_width (2.5.0)
154
+ zeitwerk (2.6.17)
142
155
 
143
156
  PLATFORMS
144
157
  x86_64-darwin-22
158
+ x86_64-darwin-23
145
159
  x86_64-linux
146
160
 
147
161
  DEPENDENCIES
148
162
  activerecord (~> 6.1, < 6.2)
149
163
  appraisal
164
+ base64
165
+ bigdecimal
150
166
  bundler (~> 2.0)
151
- combustion (~> 1.3)
152
- database_cleaner (~> 2)
167
+ combustion (~> 1.4)
168
+ database_cleaner-active_record (~> 2.2)
169
+ mutex_m
153
170
  pry
154
171
  rake (= 13.0.3)
155
172
  rspec (~> 3.0)
@@ -159,4 +176,4 @@ DEPENDENCIES
159
176
  table_saw!
160
177
 
161
178
  BUNDLED WITH
162
- 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: "../"