comma 4.9.0 → 5.1.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/copilot-instructions.md +56 -0
- data/.github/workflows/build.yml +12 -3
- data/.rubocop_todo.yml +5 -4
- data/Appraisals +20 -22
- data/Gemfile.lock +36 -25
- data/README.md +161 -9
- data/comma.gemspec +7 -2
- data/gemfiles/{active6.0.6.gemfile → active7.1.6.gemfile} +2 -2
- data/gemfiles/active7.1.6.gemfile.lock +183 -0
- data/gemfiles/{active7.0.8.gemfile → active7.2.3.2.gemfile} +2 -2
- data/gemfiles/active7.2.3.2.gemfile.lock +182 -0
- data/gemfiles/{active6.1.7.6.gemfile → active8.0.5.1.gemfile} +2 -2
- data/gemfiles/active8.0.5.1.gemfile.lock +183 -0
- data/gemfiles/{active7.1.3.gemfile → active8.1.3.1.gemfile} +2 -2
- data/gemfiles/active8.1.3.1.gemfile.lock +183 -0
- data/gemfiles/{rails7.0.8.gemfile → rails7.1.6.gemfile} +1 -1
- data/gemfiles/rails7.1.6.gemfile.lock +326 -0
- data/gemfiles/{rails7.1.3.gemfile → rails7.2.3.2.gemfile} +1 -1
- data/gemfiles/rails7.2.3.2.gemfile.lock +321 -0
- data/gemfiles/{rails6.0.6.gemfile → rails8.0.5.1.gemfile} +1 -2
- data/gemfiles/rails8.0.5.1.gemfile.lock +319 -0
- data/gemfiles/{rails6.1.7.6.gemfile → rails8.1.3.1.gemfile} +1 -2
- data/gemfiles/rails8.1.3.1.gemfile.lock +322 -0
- data/lib/comma/array.rb +1 -3
- data/lib/comma/collection_export.rb +9 -0
- data/lib/comma/data_extractor.rb +16 -20
- data/lib/comma/data_mapper_collection.rb +1 -3
- data/lib/comma/extractor.rb +33 -2
- data/lib/comma/generator.rb +4 -8
- data/lib/comma/header_extractor.rb +10 -19
- data/lib/comma/mongoid.rb +1 -3
- data/lib/comma/object.rb +37 -11
- data/lib/comma/options.rb +18 -0
- data/lib/comma/rails/renderer.rb +21 -0
- data/lib/comma/rails.rb +16 -0
- data/lib/comma/version.rb +1 -1
- data/lib/comma.rb +4 -43
- data/spec/comma/comma_spec.rb +93 -34
- data/spec/comma/data_extractor_spec.rb +3 -3
- data/spec/comma/header_extractor_spec.rb +1 -1
- data/spec/comma/options_spec.rb +63 -0
- data/spec/comma/rails/active_record_spec.rb +0 -1
- data/spec/controllers/users_controller_spec.rb +13 -28
- data/spec/gemspec_spec.rb +11 -0
- data/spec/support/comma_class_helper.rb +12 -0
- data/spec/support/csv_expectation_helper.rb +14 -0
- metadata +92 -23
- data/gemfiles/active6.0.6.gemfile.lock +0 -136
- data/gemfiles/active6.1.7.6.gemfile.lock +0 -135
- data/gemfiles/active7.0.8.gemfile.lock +0 -133
- data/gemfiles/active7.1.3.gemfile.lock +0 -139
- data/gemfiles/rails6.0.6.gemfile.lock +0 -268
- data/gemfiles/rails6.1.7.6.gemfile.lock +0 -271
- data/gemfiles/rails7.0.8.gemfile.lock +0 -266
- data/gemfiles/rails7.1.3.gemfile.lock +0 -289
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: ..
|
|
3
|
+
specs:
|
|
4
|
+
comma (5.1.0)
|
|
5
|
+
activesupport (>= 4.2.0)
|
|
6
|
+
csv (>= 3.3)
|
|
7
|
+
|
|
8
|
+
GEM
|
|
9
|
+
remote: https://rubygems.org/
|
|
10
|
+
specs:
|
|
11
|
+
activemodel (7.1.6)
|
|
12
|
+
activesupport (= 7.1.6)
|
|
13
|
+
activerecord (7.1.6)
|
|
14
|
+
activemodel (= 7.1.6)
|
|
15
|
+
activesupport (= 7.1.6)
|
|
16
|
+
timeout (>= 0.4.0)
|
|
17
|
+
activesupport (7.1.6)
|
|
18
|
+
base64
|
|
19
|
+
benchmark (>= 0.3)
|
|
20
|
+
bigdecimal
|
|
21
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
22
|
+
connection_pool (>= 2.2.5)
|
|
23
|
+
drb
|
|
24
|
+
i18n (>= 1.6, < 2)
|
|
25
|
+
logger (>= 1.4.2)
|
|
26
|
+
minitest (>= 5.1)
|
|
27
|
+
mutex_m
|
|
28
|
+
securerandom (>= 0.3)
|
|
29
|
+
tzinfo (~> 2.0)
|
|
30
|
+
appraisal (1.0.3)
|
|
31
|
+
bundler
|
|
32
|
+
rake
|
|
33
|
+
thor (>= 0.14.0)
|
|
34
|
+
ast (2.4.3)
|
|
35
|
+
base64 (0.3.0)
|
|
36
|
+
benchmark (0.5.0)
|
|
37
|
+
bigdecimal (4.1.2)
|
|
38
|
+
cgi (0.5.2)
|
|
39
|
+
concurrent-ruby (1.3.8)
|
|
40
|
+
connection_pool (2.5.5)
|
|
41
|
+
coveralls (0.8.23)
|
|
42
|
+
json (>= 1.8, < 3)
|
|
43
|
+
simplecov (~> 0.16.1)
|
|
44
|
+
term-ansicolor (~> 1.3)
|
|
45
|
+
thor (>= 0.19.4, < 2.0)
|
|
46
|
+
tins (~> 1.6)
|
|
47
|
+
csv (3.3.6)
|
|
48
|
+
date (3.5.1)
|
|
49
|
+
diff-lcs (1.6.2)
|
|
50
|
+
docile (1.4.1)
|
|
51
|
+
drb (2.2.3)
|
|
52
|
+
erb (4.0.4.1)
|
|
53
|
+
cgi (>= 0.3.3)
|
|
54
|
+
i18n (1.15.2)
|
|
55
|
+
concurrent-ruby (~> 1.0)
|
|
56
|
+
io-console (0.9.2)
|
|
57
|
+
irb (1.18.0)
|
|
58
|
+
pp (>= 0.6.0)
|
|
59
|
+
prism (>= 1.3.0)
|
|
60
|
+
rdoc (>= 4.0.0)
|
|
61
|
+
reline (>= 0.4.2)
|
|
62
|
+
json (2.21.2)
|
|
63
|
+
logger (1.7.0)
|
|
64
|
+
mini_portile2 (2.8.9)
|
|
65
|
+
minitest (5.27.0)
|
|
66
|
+
mize (0.6.1)
|
|
67
|
+
mutex_m (0.3.0)
|
|
68
|
+
ostruct (0.6.3)
|
|
69
|
+
parallel (1.28.0)
|
|
70
|
+
parser (3.3.12.0)
|
|
71
|
+
ast (~> 2.4.1)
|
|
72
|
+
racc
|
|
73
|
+
pp (0.6.4)
|
|
74
|
+
prettyprint
|
|
75
|
+
prettyprint (0.2.0)
|
|
76
|
+
prism (1.9.0)
|
|
77
|
+
psych (5.5.0)
|
|
78
|
+
date
|
|
79
|
+
stringio
|
|
80
|
+
racc (1.8.1)
|
|
81
|
+
rainbow (3.1.1)
|
|
82
|
+
rake (13.0.6)
|
|
83
|
+
rdoc (7.2.0)
|
|
84
|
+
erb
|
|
85
|
+
psych (>= 4.0.0)
|
|
86
|
+
tsort
|
|
87
|
+
readline (0.0.4)
|
|
88
|
+
reline
|
|
89
|
+
regexp_parser (2.12.0)
|
|
90
|
+
reline (0.7.0)
|
|
91
|
+
io-console (~> 0.5)
|
|
92
|
+
rexml (3.4.4)
|
|
93
|
+
rspec (3.13.2)
|
|
94
|
+
rspec-core (~> 3.13.0)
|
|
95
|
+
rspec-expectations (~> 3.13.0)
|
|
96
|
+
rspec-mocks (~> 3.13.0)
|
|
97
|
+
rspec-activemodel-mocks (1.3.0)
|
|
98
|
+
activemodel (>= 3.0)
|
|
99
|
+
activesupport (>= 3.0)
|
|
100
|
+
rspec-mocks (>= 2.99, < 4.0)
|
|
101
|
+
rspec-core (3.13.6)
|
|
102
|
+
rspec-support (~> 3.13.0)
|
|
103
|
+
rspec-expectations (3.13.5)
|
|
104
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
105
|
+
rspec-support (~> 3.13.0)
|
|
106
|
+
rspec-its (2.0.0)
|
|
107
|
+
rspec-core (>= 3.13.0)
|
|
108
|
+
rspec-expectations (>= 3.13.0)
|
|
109
|
+
rspec-mocks (3.13.8)
|
|
110
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
111
|
+
rspec-support (~> 3.13.0)
|
|
112
|
+
rspec-support (3.13.7)
|
|
113
|
+
rubocop (1.30.1)
|
|
114
|
+
parallel (~> 1.10)
|
|
115
|
+
parser (>= 3.1.0.0)
|
|
116
|
+
rainbow (>= 2.2.2, < 4.0)
|
|
117
|
+
regexp_parser (>= 1.8, < 3.0)
|
|
118
|
+
rexml (>= 3.2.5, < 4.0)
|
|
119
|
+
rubocop-ast (>= 1.18.0, < 2.0)
|
|
120
|
+
ruby-progressbar (~> 1.7)
|
|
121
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
|
122
|
+
rubocop-ast (1.50.0)
|
|
123
|
+
parser (>= 3.3.7.2)
|
|
124
|
+
prism (~> 1.7)
|
|
125
|
+
rubocop-performance (1.19.1)
|
|
126
|
+
rubocop (>= 1.7.0, < 2.0)
|
|
127
|
+
rubocop-ast (>= 0.4.0)
|
|
128
|
+
ruby-progressbar (1.13.0)
|
|
129
|
+
securerandom (0.4.1)
|
|
130
|
+
simplecov (0.16.1)
|
|
131
|
+
docile (~> 1.1)
|
|
132
|
+
json (>= 1.8, < 3)
|
|
133
|
+
simplecov-html (~> 0.10.0)
|
|
134
|
+
simplecov-html (0.10.2)
|
|
135
|
+
sqlite3 (2.8.1)
|
|
136
|
+
mini_portile2 (~> 2.8.0)
|
|
137
|
+
sqlite3 (2.8.1-x86_64-linux-gnu)
|
|
138
|
+
stringio (3.2.0)
|
|
139
|
+
sync (0.5.0)
|
|
140
|
+
term-ansicolor (1.11.3)
|
|
141
|
+
tins (~> 1)
|
|
142
|
+
thor (1.5.0)
|
|
143
|
+
timeout (0.6.1)
|
|
144
|
+
tins (1.56.0)
|
|
145
|
+
bigdecimal
|
|
146
|
+
irb
|
|
147
|
+
mize (~> 0.6)
|
|
148
|
+
readline
|
|
149
|
+
sync
|
|
150
|
+
tsort (0.2.0)
|
|
151
|
+
tzinfo (2.0.6)
|
|
152
|
+
concurrent-ruby (~> 1.0)
|
|
153
|
+
unicode-display_width (2.6.0)
|
|
154
|
+
|
|
155
|
+
PLATFORMS
|
|
156
|
+
ruby
|
|
157
|
+
x86_64-linux
|
|
158
|
+
|
|
159
|
+
DEPENDENCIES
|
|
160
|
+
activerecord (= 7.1.6)
|
|
161
|
+
activesupport (= 7.1.6)
|
|
162
|
+
appraisal (~> 1.0.0)
|
|
163
|
+
base64
|
|
164
|
+
benchmark
|
|
165
|
+
bigdecimal
|
|
166
|
+
cgi
|
|
167
|
+
comma!
|
|
168
|
+
coveralls
|
|
169
|
+
drb
|
|
170
|
+
logger
|
|
171
|
+
minitest (= 5.27.0)
|
|
172
|
+
mutex_m
|
|
173
|
+
ostruct
|
|
174
|
+
rake (~> 13.0.1)
|
|
175
|
+
rspec (~> 3.13)
|
|
176
|
+
rspec-activemodel-mocks
|
|
177
|
+
rspec-its
|
|
178
|
+
rubocop (~> 1.30.0)
|
|
179
|
+
rubocop-performance
|
|
180
|
+
sqlite3
|
|
181
|
+
|
|
182
|
+
BUNDLED WITH
|
|
183
|
+
2.5.5
|
|
@@ -6,7 +6,7 @@ gem "coveralls", :require => false
|
|
|
6
6
|
gem "rubocop", "~> 1.30.0", :require => false
|
|
7
7
|
gem "rubocop-performance", :require => false
|
|
8
8
|
gem "sqlite3"
|
|
9
|
-
gem "activesupport", "7.
|
|
10
|
-
gem "activerecord", "7.
|
|
9
|
+
gem "activesupport", "7.2.3.2"
|
|
10
|
+
gem "activerecord", "7.2.3.2"
|
|
11
11
|
|
|
12
12
|
gemspec :path => "../"
|
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: ..
|
|
3
|
+
specs:
|
|
4
|
+
comma (5.1.0)
|
|
5
|
+
activesupport (>= 4.2.0)
|
|
6
|
+
csv (>= 3.3)
|
|
7
|
+
|
|
8
|
+
GEM
|
|
9
|
+
remote: https://rubygems.org/
|
|
10
|
+
specs:
|
|
11
|
+
activemodel (7.2.3.2)
|
|
12
|
+
activesupport (= 7.2.3.2)
|
|
13
|
+
activerecord (7.2.3.2)
|
|
14
|
+
activemodel (= 7.2.3.2)
|
|
15
|
+
activesupport (= 7.2.3.2)
|
|
16
|
+
timeout (>= 0.4.0)
|
|
17
|
+
activesupport (7.2.3.2)
|
|
18
|
+
base64
|
|
19
|
+
benchmark (>= 0.3)
|
|
20
|
+
bigdecimal
|
|
21
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
22
|
+
connection_pool (>= 2.2.5)
|
|
23
|
+
drb
|
|
24
|
+
i18n (>= 1.6, < 2)
|
|
25
|
+
logger (>= 1.4.2)
|
|
26
|
+
minitest (>= 5.1, < 6)
|
|
27
|
+
securerandom (>= 0.3)
|
|
28
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
29
|
+
appraisal (1.0.3)
|
|
30
|
+
bundler
|
|
31
|
+
rake
|
|
32
|
+
thor (>= 0.14.0)
|
|
33
|
+
ast (2.4.3)
|
|
34
|
+
base64 (0.3.0)
|
|
35
|
+
benchmark (0.5.0)
|
|
36
|
+
bigdecimal (4.1.2)
|
|
37
|
+
cgi (0.5.2)
|
|
38
|
+
concurrent-ruby (1.3.8)
|
|
39
|
+
connection_pool (2.5.5)
|
|
40
|
+
coveralls (0.8.23)
|
|
41
|
+
json (>= 1.8, < 3)
|
|
42
|
+
simplecov (~> 0.16.1)
|
|
43
|
+
term-ansicolor (~> 1.3)
|
|
44
|
+
thor (>= 0.19.4, < 2.0)
|
|
45
|
+
tins (~> 1.6)
|
|
46
|
+
csv (3.3.6)
|
|
47
|
+
date (3.5.1)
|
|
48
|
+
diff-lcs (1.6.2)
|
|
49
|
+
docile (1.4.1)
|
|
50
|
+
drb (2.2.3)
|
|
51
|
+
erb (4.0.4.1)
|
|
52
|
+
cgi (>= 0.3.3)
|
|
53
|
+
i18n (1.15.2)
|
|
54
|
+
concurrent-ruby (~> 1.0)
|
|
55
|
+
io-console (0.9.2)
|
|
56
|
+
irb (1.18.0)
|
|
57
|
+
pp (>= 0.6.0)
|
|
58
|
+
prism (>= 1.3.0)
|
|
59
|
+
rdoc (>= 4.0.0)
|
|
60
|
+
reline (>= 0.4.2)
|
|
61
|
+
json (2.21.2)
|
|
62
|
+
logger (1.7.0)
|
|
63
|
+
mini_portile2 (2.8.9)
|
|
64
|
+
minitest (5.27.0)
|
|
65
|
+
mize (0.6.1)
|
|
66
|
+
mutex_m (0.3.0)
|
|
67
|
+
ostruct (0.6.3)
|
|
68
|
+
parallel (1.28.0)
|
|
69
|
+
parser (3.3.12.0)
|
|
70
|
+
ast (~> 2.4.1)
|
|
71
|
+
racc
|
|
72
|
+
pp (0.6.4)
|
|
73
|
+
prettyprint
|
|
74
|
+
prettyprint (0.2.0)
|
|
75
|
+
prism (1.9.0)
|
|
76
|
+
psych (5.5.0)
|
|
77
|
+
date
|
|
78
|
+
stringio
|
|
79
|
+
racc (1.8.1)
|
|
80
|
+
rainbow (3.1.1)
|
|
81
|
+
rake (13.0.6)
|
|
82
|
+
rdoc (7.2.0)
|
|
83
|
+
erb
|
|
84
|
+
psych (>= 4.0.0)
|
|
85
|
+
tsort
|
|
86
|
+
readline (0.0.4)
|
|
87
|
+
reline
|
|
88
|
+
regexp_parser (2.12.0)
|
|
89
|
+
reline (0.7.0)
|
|
90
|
+
io-console (~> 0.5)
|
|
91
|
+
rexml (3.4.4)
|
|
92
|
+
rspec (3.13.2)
|
|
93
|
+
rspec-core (~> 3.13.0)
|
|
94
|
+
rspec-expectations (~> 3.13.0)
|
|
95
|
+
rspec-mocks (~> 3.13.0)
|
|
96
|
+
rspec-activemodel-mocks (1.3.0)
|
|
97
|
+
activemodel (>= 3.0)
|
|
98
|
+
activesupport (>= 3.0)
|
|
99
|
+
rspec-mocks (>= 2.99, < 4.0)
|
|
100
|
+
rspec-core (3.13.6)
|
|
101
|
+
rspec-support (~> 3.13.0)
|
|
102
|
+
rspec-expectations (3.13.5)
|
|
103
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
104
|
+
rspec-support (~> 3.13.0)
|
|
105
|
+
rspec-its (2.0.0)
|
|
106
|
+
rspec-core (>= 3.13.0)
|
|
107
|
+
rspec-expectations (>= 3.13.0)
|
|
108
|
+
rspec-mocks (3.13.8)
|
|
109
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
110
|
+
rspec-support (~> 3.13.0)
|
|
111
|
+
rspec-support (3.13.7)
|
|
112
|
+
rubocop (1.30.1)
|
|
113
|
+
parallel (~> 1.10)
|
|
114
|
+
parser (>= 3.1.0.0)
|
|
115
|
+
rainbow (>= 2.2.2, < 4.0)
|
|
116
|
+
regexp_parser (>= 1.8, < 3.0)
|
|
117
|
+
rexml (>= 3.2.5, < 4.0)
|
|
118
|
+
rubocop-ast (>= 1.18.0, < 2.0)
|
|
119
|
+
ruby-progressbar (~> 1.7)
|
|
120
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
|
121
|
+
rubocop-ast (1.50.0)
|
|
122
|
+
parser (>= 3.3.7.2)
|
|
123
|
+
prism (~> 1.7)
|
|
124
|
+
rubocop-performance (1.19.1)
|
|
125
|
+
rubocop (>= 1.7.0, < 2.0)
|
|
126
|
+
rubocop-ast (>= 0.4.0)
|
|
127
|
+
ruby-progressbar (1.13.0)
|
|
128
|
+
securerandom (0.4.1)
|
|
129
|
+
simplecov (0.16.1)
|
|
130
|
+
docile (~> 1.1)
|
|
131
|
+
json (>= 1.8, < 3)
|
|
132
|
+
simplecov-html (~> 0.10.0)
|
|
133
|
+
simplecov-html (0.10.2)
|
|
134
|
+
sqlite3 (2.8.1)
|
|
135
|
+
mini_portile2 (~> 2.8.0)
|
|
136
|
+
sqlite3 (2.8.1-x86_64-linux-gnu)
|
|
137
|
+
stringio (3.2.0)
|
|
138
|
+
sync (0.5.0)
|
|
139
|
+
term-ansicolor (1.11.3)
|
|
140
|
+
tins (~> 1)
|
|
141
|
+
thor (1.5.0)
|
|
142
|
+
timeout (0.6.1)
|
|
143
|
+
tins (1.56.0)
|
|
144
|
+
bigdecimal
|
|
145
|
+
irb
|
|
146
|
+
mize (~> 0.6)
|
|
147
|
+
readline
|
|
148
|
+
sync
|
|
149
|
+
tsort (0.2.0)
|
|
150
|
+
tzinfo (2.0.6)
|
|
151
|
+
concurrent-ruby (~> 1.0)
|
|
152
|
+
unicode-display_width (2.6.0)
|
|
153
|
+
|
|
154
|
+
PLATFORMS
|
|
155
|
+
ruby
|
|
156
|
+
x86_64-linux
|
|
157
|
+
|
|
158
|
+
DEPENDENCIES
|
|
159
|
+
activerecord (= 7.2.3.2)
|
|
160
|
+
activesupport (= 7.2.3.2)
|
|
161
|
+
appraisal (~> 1.0.0)
|
|
162
|
+
base64
|
|
163
|
+
benchmark
|
|
164
|
+
bigdecimal
|
|
165
|
+
cgi
|
|
166
|
+
comma!
|
|
167
|
+
coveralls
|
|
168
|
+
drb
|
|
169
|
+
logger
|
|
170
|
+
minitest (= 5.27.0)
|
|
171
|
+
mutex_m
|
|
172
|
+
ostruct
|
|
173
|
+
rake (~> 13.0.1)
|
|
174
|
+
rspec (~> 3.13)
|
|
175
|
+
rspec-activemodel-mocks
|
|
176
|
+
rspec-its
|
|
177
|
+
rubocop (~> 1.30.0)
|
|
178
|
+
rubocop-performance
|
|
179
|
+
sqlite3
|
|
180
|
+
|
|
181
|
+
BUNDLED WITH
|
|
182
|
+
2.5.5
|
|
@@ -6,7 +6,7 @@ gem "coveralls", :require => false
|
|
|
6
6
|
gem "rubocop", "~> 1.30.0", :require => false
|
|
7
7
|
gem "rubocop-performance", :require => false
|
|
8
8
|
gem "sqlite3"
|
|
9
|
-
gem "activesupport", "
|
|
10
|
-
gem "activerecord", "
|
|
9
|
+
gem "activesupport", "8.0.5.1"
|
|
10
|
+
gem "activerecord", "8.0.5.1"
|
|
11
11
|
|
|
12
12
|
gemspec :path => "../"
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: ..
|
|
3
|
+
specs:
|
|
4
|
+
comma (5.1.0)
|
|
5
|
+
activesupport (>= 4.2.0)
|
|
6
|
+
csv (>= 3.3)
|
|
7
|
+
|
|
8
|
+
GEM
|
|
9
|
+
remote: https://rubygems.org/
|
|
10
|
+
specs:
|
|
11
|
+
activemodel (8.0.5.1)
|
|
12
|
+
activesupport (= 8.0.5.1)
|
|
13
|
+
activerecord (8.0.5.1)
|
|
14
|
+
activemodel (= 8.0.5.1)
|
|
15
|
+
activesupport (= 8.0.5.1)
|
|
16
|
+
timeout (>= 0.4.0)
|
|
17
|
+
activesupport (8.0.5.1)
|
|
18
|
+
base64
|
|
19
|
+
benchmark (>= 0.3)
|
|
20
|
+
bigdecimal
|
|
21
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
22
|
+
connection_pool (>= 2.2.5)
|
|
23
|
+
drb
|
|
24
|
+
i18n (>= 1.6, < 2)
|
|
25
|
+
logger (>= 1.4.2)
|
|
26
|
+
minitest (>= 5.1)
|
|
27
|
+
securerandom (>= 0.3)
|
|
28
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
29
|
+
uri (>= 0.13.1)
|
|
30
|
+
appraisal (1.0.3)
|
|
31
|
+
bundler
|
|
32
|
+
rake
|
|
33
|
+
thor (>= 0.14.0)
|
|
34
|
+
ast (2.4.3)
|
|
35
|
+
base64 (0.3.0)
|
|
36
|
+
benchmark (0.5.0)
|
|
37
|
+
bigdecimal (4.1.2)
|
|
38
|
+
cgi (0.5.2)
|
|
39
|
+
concurrent-ruby (1.3.8)
|
|
40
|
+
connection_pool (3.0.2)
|
|
41
|
+
coveralls (0.8.23)
|
|
42
|
+
json (>= 1.8, < 3)
|
|
43
|
+
simplecov (~> 0.16.1)
|
|
44
|
+
term-ansicolor (~> 1.3)
|
|
45
|
+
thor (>= 0.19.4, < 2.0)
|
|
46
|
+
tins (~> 1.6)
|
|
47
|
+
csv (3.3.6)
|
|
48
|
+
diff-lcs (1.6.2)
|
|
49
|
+
docile (1.4.1)
|
|
50
|
+
drb (2.2.3)
|
|
51
|
+
erb (6.0.7)
|
|
52
|
+
i18n (1.15.2)
|
|
53
|
+
concurrent-ruby (~> 1.0)
|
|
54
|
+
io-console (0.9.2)
|
|
55
|
+
irb (1.18.0)
|
|
56
|
+
pp (>= 0.6.0)
|
|
57
|
+
prism (>= 1.3.0)
|
|
58
|
+
rdoc (>= 4.0.0)
|
|
59
|
+
reline (>= 0.4.2)
|
|
60
|
+
json (2.21.2)
|
|
61
|
+
logger (1.7.0)
|
|
62
|
+
mini_portile2 (2.8.9)
|
|
63
|
+
minitest (5.27.0)
|
|
64
|
+
mize (0.6.1)
|
|
65
|
+
mutex_m (0.3.0)
|
|
66
|
+
ostruct (0.6.3)
|
|
67
|
+
parallel (1.28.0)
|
|
68
|
+
parser (3.3.12.0)
|
|
69
|
+
ast (~> 2.4.1)
|
|
70
|
+
racc
|
|
71
|
+
pp (0.6.4)
|
|
72
|
+
prettyprint
|
|
73
|
+
prettyprint (0.2.0)
|
|
74
|
+
prism (1.9.0)
|
|
75
|
+
racc (1.8.1)
|
|
76
|
+
rainbow (3.1.1)
|
|
77
|
+
rake (13.0.6)
|
|
78
|
+
rbs (4.1.3)
|
|
79
|
+
logger
|
|
80
|
+
prism (>= 1.6.0)
|
|
81
|
+
tsort
|
|
82
|
+
rdoc (8.0.0)
|
|
83
|
+
erb
|
|
84
|
+
prism (>= 1.6.0)
|
|
85
|
+
rbs (>= 4.0.0)
|
|
86
|
+
tsort
|
|
87
|
+
readline (0.0.4)
|
|
88
|
+
reline
|
|
89
|
+
regexp_parser (2.12.0)
|
|
90
|
+
reline (0.7.0)
|
|
91
|
+
io-console (~> 0.5)
|
|
92
|
+
rexml (3.4.4)
|
|
93
|
+
rspec (3.13.2)
|
|
94
|
+
rspec-core (~> 3.13.0)
|
|
95
|
+
rspec-expectations (~> 3.13.0)
|
|
96
|
+
rspec-mocks (~> 3.13.0)
|
|
97
|
+
rspec-activemodel-mocks (1.3.0)
|
|
98
|
+
activemodel (>= 3.0)
|
|
99
|
+
activesupport (>= 3.0)
|
|
100
|
+
rspec-mocks (>= 2.99, < 4.0)
|
|
101
|
+
rspec-core (3.13.6)
|
|
102
|
+
rspec-support (~> 3.13.0)
|
|
103
|
+
rspec-expectations (3.13.5)
|
|
104
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
105
|
+
rspec-support (~> 3.13.0)
|
|
106
|
+
rspec-its (2.0.0)
|
|
107
|
+
rspec-core (>= 3.13.0)
|
|
108
|
+
rspec-expectations (>= 3.13.0)
|
|
109
|
+
rspec-mocks (3.13.8)
|
|
110
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
111
|
+
rspec-support (~> 3.13.0)
|
|
112
|
+
rspec-support (3.13.7)
|
|
113
|
+
rubocop (1.30.1)
|
|
114
|
+
parallel (~> 1.10)
|
|
115
|
+
parser (>= 3.1.0.0)
|
|
116
|
+
rainbow (>= 2.2.2, < 4.0)
|
|
117
|
+
regexp_parser (>= 1.8, < 3.0)
|
|
118
|
+
rexml (>= 3.2.5, < 4.0)
|
|
119
|
+
rubocop-ast (>= 1.18.0, < 2.0)
|
|
120
|
+
ruby-progressbar (~> 1.7)
|
|
121
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
|
122
|
+
rubocop-ast (1.50.0)
|
|
123
|
+
parser (>= 3.3.7.2)
|
|
124
|
+
prism (~> 1.7)
|
|
125
|
+
rubocop-performance (1.19.1)
|
|
126
|
+
rubocop (>= 1.7.0, < 2.0)
|
|
127
|
+
rubocop-ast (>= 0.4.0)
|
|
128
|
+
ruby-progressbar (1.13.0)
|
|
129
|
+
securerandom (0.4.1)
|
|
130
|
+
simplecov (0.16.1)
|
|
131
|
+
docile (~> 1.1)
|
|
132
|
+
json (>= 1.8, < 3)
|
|
133
|
+
simplecov-html (~> 0.10.0)
|
|
134
|
+
simplecov-html (0.10.2)
|
|
135
|
+
sqlite3 (2.9.6)
|
|
136
|
+
mini_portile2 (~> 2.8.0)
|
|
137
|
+
sqlite3 (2.9.6-x86_64-linux-gnu)
|
|
138
|
+
sync (0.5.0)
|
|
139
|
+
term-ansicolor (1.11.3)
|
|
140
|
+
tins (~> 1)
|
|
141
|
+
thor (1.5.0)
|
|
142
|
+
timeout (0.6.1)
|
|
143
|
+
tins (1.56.0)
|
|
144
|
+
bigdecimal
|
|
145
|
+
irb
|
|
146
|
+
mize (~> 0.6)
|
|
147
|
+
readline
|
|
148
|
+
sync
|
|
149
|
+
tsort (0.2.0)
|
|
150
|
+
tzinfo (2.0.6)
|
|
151
|
+
concurrent-ruby (~> 1.0)
|
|
152
|
+
unicode-display_width (2.6.0)
|
|
153
|
+
uri (1.1.1)
|
|
154
|
+
|
|
155
|
+
PLATFORMS
|
|
156
|
+
ruby
|
|
157
|
+
x86_64-linux
|
|
158
|
+
|
|
159
|
+
DEPENDENCIES
|
|
160
|
+
activerecord (= 8.0.5.1)
|
|
161
|
+
activesupport (= 8.0.5.1)
|
|
162
|
+
appraisal (~> 1.0.0)
|
|
163
|
+
base64
|
|
164
|
+
benchmark
|
|
165
|
+
bigdecimal
|
|
166
|
+
cgi
|
|
167
|
+
comma!
|
|
168
|
+
coveralls
|
|
169
|
+
drb
|
|
170
|
+
logger
|
|
171
|
+
minitest (= 5.27.0)
|
|
172
|
+
mutex_m
|
|
173
|
+
ostruct
|
|
174
|
+
rake (~> 13.0.1)
|
|
175
|
+
rspec (~> 3.13)
|
|
176
|
+
rspec-activemodel-mocks
|
|
177
|
+
rspec-its
|
|
178
|
+
rubocop (~> 1.30.0)
|
|
179
|
+
rubocop-performance
|
|
180
|
+
sqlite3
|
|
181
|
+
|
|
182
|
+
BUNDLED WITH
|
|
183
|
+
2.5.5
|
|
@@ -6,7 +6,7 @@ gem "coveralls", :require => false
|
|
|
6
6
|
gem "rubocop", "~> 1.30.0", :require => false
|
|
7
7
|
gem "rubocop-performance", :require => false
|
|
8
8
|
gem "sqlite3"
|
|
9
|
-
gem "activesupport", "
|
|
10
|
-
gem "activerecord", "
|
|
9
|
+
gem "activesupport", "8.1.3.1"
|
|
10
|
+
gem "activerecord", "8.1.3.1"
|
|
11
11
|
|
|
12
12
|
gemspec :path => "../"
|