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.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +4 -2
- data/.rubocop.yml +1 -1
- data/.tool-versions +1 -1
- data/Appraisals +14 -0
- data/Gemfile +2 -2
- data/Gemfile.lock +129 -84
- data/exe/table-saw +1 -0
- data/gemfiles/activerecord_6.1.0.gemfile +5 -2
- data/gemfiles/activerecord_6.1.0.gemfile.lock +89 -72
- data/gemfiles/activerecord_7.0.0.gemfile +5 -2
- data/gemfiles/activerecord_7.0.0.gemfile.lock +89 -72
- data/gemfiles/activerecord_7.1.0.gemfile +17 -0
- data/gemfiles/activerecord_7.1.0.gemfile.lock +206 -0
- data/gemfiles/activerecord_7.2.0.gemfile +17 -0
- data/gemfiles/activerecord_7.2.0.gemfile.lock +221 -0
- data/lib/table_saw/configuration.rb +1 -1
- data/lib/table_saw/create_dump_file.rb +3 -3
- data/lib/table_saw/dependency_graph/belongs_to_directives.rb +1 -1
- data/lib/table_saw/dependency_graph/build.rb +2 -2
- data/lib/table_saw/dependency_graph/dump_table.rb +1 -1
- data/lib/table_saw/dependency_graph/has_many_directives.rb +1 -1
- data/lib/table_saw/formats/copy.rb +1 -5
- data/lib/table_saw/formats/insert.rb +1 -1
- data/lib/table_saw/manifest.rb +1 -1
- data/lib/table_saw/queries/execute_insert_statement.rb +2 -6
- data/lib/table_saw/queries/foreign_key_relationships.rb +1 -1
- data/lib/table_saw/queries/materialized_views.rb +1 -1
- data/lib/table_saw/queries/prepared_insert_statement.rb +1 -1
- data/lib/table_saw/queries/serial_sequences.rb +1 -1
- data/lib/table_saw/queries/serialize_sql_in_clause.rb +1 -5
- data/lib/table_saw/version.rb +1 -1
- data/lib/table_saw.rb +18 -2
- data/table_saw.gemspec +2 -2
- metadata +10 -7
- data/lib/table_saw/connection.rb +0 -30
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 134b095f48e6e54143d285ff2d59cd760e538b0f5a78db2bac4729110b678075
|
4
|
+
data.tar.gz: a68f17b155840a9f9351787aa783bf5f22326a9228a350c0dd72f5d428de7e50
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 435d2a488bdf003114963379e93c4f23e370588263a1bfda623e2cbe3b96eab9054150ed6f2dbdf4e7582fa06bf896fe472e43962fe0624b74d9997c8453d132
|
7
|
+
data.tar.gz: 6b856e4a37e79393563b3bd62086e3bbe1e6ce02b6390575d93494c910c7d4863ecf96c6f482d40bf5990bb09c0215c05d5263e7900cfd43c65bbdf42bbe083c
|
data/.github/workflows/ruby.yml
CHANGED
@@ -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@
|
38
|
+
- uses: actions/checkout@v4
|
37
39
|
|
38
40
|
- name: Set up Ruby
|
39
41
|
uses: ruby/setup-ruby@v1
|
data/.rubocop.yml
CHANGED
data/.tool-versions
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ruby 3.
|
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
data/Gemfile.lock
CHANGED
@@ -1,146 +1,191 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
table_saw (3.
|
5
|
-
activerecord (>=
|
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
|
13
|
-
actionview (= 7.0
|
14
|
-
activesupport (= 7.0
|
15
|
-
|
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.
|
18
|
-
rails-html-sanitizer (~> 1.
|
19
|
-
|
20
|
-
|
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.
|
23
|
-
rails-dom-testing (~> 2.
|
24
|
-
rails-html-sanitizer (~> 1.
|
25
|
-
activemodel (7.0
|
26
|
-
activesupport (= 7.0
|
27
|
-
activerecord (7.0
|
28
|
-
activemodel (= 7.0
|
29
|
-
activesupport (= 7.0
|
30
|
-
|
31
|
-
|
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
|
-
|
35
|
-
|
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
|
-
|
51
|
+
base64 (0.2.0)
|
52
|
+
bigdecimal (3.1.8)
|
53
|
+
builder (3.3.0)
|
41
54
|
coderay (1.1.3)
|
42
|
-
combustion (1.
|
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.
|
59
|
+
concurrent-ruby (1.3.4)
|
60
|
+
connection_pool (2.4.1)
|
47
61
|
crass (1.0.6)
|
48
|
-
database_cleaner (2.0
|
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.
|
55
|
-
docile (1.4.
|
56
|
-
|
57
|
-
|
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
|
-
|
60
|
-
|
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.
|
64
|
-
mini_portile2 (2.8.
|
65
|
-
minitest (5.
|
66
|
-
nokogiri (1.
|
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.
|
70
|
-
parser (3.
|
88
|
+
parallel (1.26.1)
|
89
|
+
parser (3.3.4.2)
|
71
90
|
ast (~> 2.4.1)
|
72
|
-
|
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
|
-
|
77
|
-
|
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
|
-
|
81
|
-
|
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.
|
84
|
-
loofah (~> 2.
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
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.
|
120
|
+
thor (~> 1.0, >= 1.2.2)
|
121
|
+
zeitwerk (~> 2.6)
|
92
122
|
rainbow (3.1.1)
|
93
123
|
rake (13.0.3)
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
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.
|
105
|
-
rspec-mocks (3.
|
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.
|
108
|
-
rspec-support (3.
|
109
|
-
rubocop (1.
|
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.
|
148
|
+
parser (>= 3.3.0.2)
|
113
149
|
rainbow (>= 2.2.2, < 4.0)
|
114
|
-
regexp_parser (>=
|
150
|
+
regexp_parser (>= 2.4, < 3.0)
|
115
151
|
rexml (>= 3.2.5, < 4.0)
|
116
|
-
rubocop-ast (>= 1.
|
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.
|
120
|
-
parser (>= 3.
|
121
|
-
rubocop-capybara (2.
|
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.
|
124
|
-
rubocop (~> 1.
|
125
|
-
rubocop-rspec (2.
|
126
|
-
rubocop (~> 1.
|
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.
|
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
|
-
|
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.
|
143
|
-
|
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.
|
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.
|
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.
|
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.
|
5
|
-
activerecord (>=
|
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.
|
13
|
-
actionview (= 6.1.7.
|
14
|
-
activesupport (= 6.1.7.
|
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.
|
20
|
-
activesupport (= 6.1.7.
|
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.
|
26
|
-
activesupport (= 6.1.7.
|
27
|
-
activerecord (6.1.7.
|
28
|
-
activemodel (= 6.1.7.
|
29
|
-
activesupport (= 6.1.7.
|
30
|
-
activesupport (6.1.7.
|
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.
|
36
|
+
appraisal (2.5.0)
|
37
37
|
bundler
|
38
38
|
rake
|
39
39
|
thor (>= 0.14.0)
|
40
40
|
ast (2.4.2)
|
41
|
-
|
41
|
+
base64 (0.2.0)
|
42
|
+
bigdecimal (3.1.8)
|
43
|
+
builder (3.3.0)
|
42
44
|
coderay (1.1.3)
|
43
|
-
combustion (1.
|
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.
|
49
|
+
concurrent-ruby (1.3.4)
|
48
50
|
crass (1.0.6)
|
49
|
-
database_cleaner (2.0
|
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.
|
56
|
-
docile (1.4.
|
57
|
-
erubi (1.
|
58
|
-
i18n (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.
|
61
|
-
|
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.
|
65
|
-
minitest (5.
|
66
|
-
|
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
|
-
|
69
|
-
|
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
|
-
|
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.
|
76
|
-
rack (2.2.
|
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
|
80
|
-
activesupport (>=
|
84
|
+
rails-dom-testing (2.2.0)
|
85
|
+
activesupport (>= 5.0.0)
|
86
|
+
minitest
|
81
87
|
nokogiri (>= 1.6)
|
82
|
-
rails-html-sanitizer (1.
|
83
|
-
loofah (~> 2.
|
84
|
-
|
85
|
-
|
86
|
-
|
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.
|
93
|
-
rexml (3.
|
94
|
-
|
95
|
-
|
96
|
-
rspec-
|
97
|
-
rspec-
|
98
|
-
|
99
|
-
|
100
|
-
|
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.
|
103
|
-
rspec-mocks (3.
|
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.
|
106
|
-
rspec-support (3.
|
107
|
-
rubocop (1.
|
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.
|
119
|
+
parser (>= 3.3.0.2)
|
111
120
|
rainbow (>= 2.2.2, < 4.0)
|
112
|
-
regexp_parser (>=
|
121
|
+
regexp_parser (>= 2.4, < 3.0)
|
113
122
|
rexml (>= 3.2.5, < 4.0)
|
114
|
-
rubocop-ast (>= 1.
|
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.
|
118
|
-
parser (>= 3.
|
119
|
-
rubocop-capybara (2.
|
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.
|
122
|
-
rubocop (~> 1.
|
123
|
-
rubocop-rspec (2.
|
124
|
-
rubocop (~> 1.
|
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.
|
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
|
-
|
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.
|
141
|
-
zeitwerk (2.6.
|
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.
|
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
|
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.
|
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: "../"
|