comma 4.9.0 → 5.0.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 +2 -2
- data/Gemfile.lock +36 -25
- data/README.md +89 -9
- data/comma.gemspec +7 -2
- data/gemfiles/active6.0.6.gemfile.lock +23 -15
- data/gemfiles/active6.1.7.6.gemfile.lock +23 -15
- data/gemfiles/active7.0.8.gemfile.lock +23 -15
- data/gemfiles/active7.1.3.gemfile.lock +23 -15
- data/gemfiles/rails6.0.6.gemfile.lock +31 -23
- data/gemfiles/rails6.1.7.6.gemfile.lock +31 -23
- data/gemfiles/rails7.0.8.gemfile.lock +31 -23
- data/gemfiles/rails7.1.3.gemfile.lock +31 -23
- data/lib/comma/version.rb +1 -1
- data/spec/gemspec_spec.rb +11 -0
- metadata +66 -7
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ..
|
|
3
3
|
specs:
|
|
4
|
-
comma (
|
|
4
|
+
comma (5.0.0)
|
|
5
5
|
activesupport (>= 4.2.0)
|
|
6
6
|
csv (>= 3.3)
|
|
7
7
|
|
|
@@ -30,7 +30,9 @@ GEM
|
|
|
30
30
|
thor (>= 0.14.0)
|
|
31
31
|
ast (2.4.2)
|
|
32
32
|
base64 (0.3.0)
|
|
33
|
+
benchmark (0.5.0)
|
|
33
34
|
bigdecimal (4.1.2)
|
|
35
|
+
cgi (0.3.6)
|
|
34
36
|
concurrent-ruby (1.3.6)
|
|
35
37
|
connection_pool (2.5.5)
|
|
36
38
|
coveralls (0.8.23)
|
|
@@ -46,9 +48,11 @@ GEM
|
|
|
46
48
|
i18n (1.14.8)
|
|
47
49
|
concurrent-ruby (~> 1.0)
|
|
48
50
|
json (2.7.1)
|
|
51
|
+
logger (1.7.0)
|
|
49
52
|
mini_portile2 (2.8.5)
|
|
50
|
-
minitest (5.
|
|
53
|
+
minitest (5.27.0)
|
|
51
54
|
mutex_m (0.3.0)
|
|
55
|
+
ostruct (0.5.2)
|
|
52
56
|
parallel (1.24.0)
|
|
53
57
|
parser (3.3.0.4)
|
|
54
58
|
ast (~> 2.4.1)
|
|
@@ -58,26 +62,26 @@ GEM
|
|
|
58
62
|
rake (13.0.6)
|
|
59
63
|
regexp_parser (2.9.0)
|
|
60
64
|
rexml (3.2.6)
|
|
61
|
-
rspec (3.
|
|
62
|
-
rspec-core (~> 3.
|
|
63
|
-
rspec-expectations (~> 3.
|
|
64
|
-
rspec-mocks (~> 3.
|
|
65
|
+
rspec (3.13.0)
|
|
66
|
+
rspec-core (~> 3.13.0)
|
|
67
|
+
rspec-expectations (~> 3.13.0)
|
|
68
|
+
rspec-mocks (~> 3.13.0)
|
|
65
69
|
rspec-activemodel-mocks (1.2.0)
|
|
66
70
|
activemodel (>= 3.0)
|
|
67
71
|
activesupport (>= 3.0)
|
|
68
72
|
rspec-mocks (>= 2.99, < 4.0)
|
|
69
|
-
rspec-core (3.
|
|
70
|
-
rspec-support (~> 3.
|
|
71
|
-
rspec-expectations (3.
|
|
73
|
+
rspec-core (3.13.1)
|
|
74
|
+
rspec-support (~> 3.13.0)
|
|
75
|
+
rspec-expectations (3.13.3)
|
|
72
76
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
73
|
-
rspec-support (~> 3.
|
|
77
|
+
rspec-support (~> 3.13.0)
|
|
74
78
|
rspec-its (1.3.0)
|
|
75
79
|
rspec-core (>= 3.0.0)
|
|
76
80
|
rspec-expectations (>= 3.0.0)
|
|
77
|
-
rspec-mocks (3.
|
|
81
|
+
rspec-mocks (3.13.1)
|
|
78
82
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
79
|
-
rspec-support (~> 3.
|
|
80
|
-
rspec-support (3.
|
|
83
|
+
rspec-support (~> 3.13.0)
|
|
84
|
+
rspec-support (3.13.1)
|
|
81
85
|
rubocop (1.30.1)
|
|
82
86
|
parallel (~> 1.10)
|
|
83
87
|
parser (>= 3.1.0.0)
|
|
@@ -121,14 +125,18 @@ DEPENDENCIES
|
|
|
121
125
|
activesupport (= 7.1.3)
|
|
122
126
|
appraisal (~> 1.0.0)
|
|
123
127
|
base64
|
|
128
|
+
benchmark
|
|
124
129
|
bigdecimal
|
|
130
|
+
cgi
|
|
125
131
|
comma!
|
|
126
132
|
coveralls
|
|
127
133
|
drb
|
|
128
|
-
|
|
134
|
+
logger
|
|
135
|
+
minitest (= 5.27.0)
|
|
129
136
|
mutex_m
|
|
137
|
+
ostruct
|
|
130
138
|
rake (~> 13.0.1)
|
|
131
|
-
rspec (~> 3.
|
|
139
|
+
rspec (~> 3.13)
|
|
132
140
|
rspec-activemodel-mocks
|
|
133
141
|
rspec-its
|
|
134
142
|
rubocop (~> 1.30.0)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ..
|
|
3
3
|
specs:
|
|
4
|
-
comma (
|
|
4
|
+
comma (5.0.0)
|
|
5
5
|
activesupport (>= 4.2.0)
|
|
6
6
|
csv (>= 3.3)
|
|
7
7
|
|
|
@@ -69,8 +69,10 @@ GEM
|
|
|
69
69
|
thor (>= 0.14.0)
|
|
70
70
|
ast (2.4.2)
|
|
71
71
|
base64 (0.3.0)
|
|
72
|
+
benchmark (0.5.0)
|
|
72
73
|
bigdecimal (4.1.2)
|
|
73
74
|
builder (3.2.4)
|
|
75
|
+
cgi (0.3.6)
|
|
74
76
|
concurrent-ruby (1.3.6)
|
|
75
77
|
coveralls (0.8.23)
|
|
76
78
|
json (>= 1.8, < 3)
|
|
@@ -90,6 +92,7 @@ GEM
|
|
|
90
92
|
i18n (1.14.8)
|
|
91
93
|
concurrent-ruby (~> 1.0)
|
|
92
94
|
json (2.7.1)
|
|
95
|
+
logger (1.7.0)
|
|
93
96
|
loofah (2.22.0)
|
|
94
97
|
crass (~> 1.0.2)
|
|
95
98
|
nokogiri (>= 1.12.0)
|
|
@@ -102,7 +105,7 @@ GEM
|
|
|
102
105
|
method_source (1.0.0)
|
|
103
106
|
mini_mime (1.1.5)
|
|
104
107
|
mini_portile2 (2.8.9)
|
|
105
|
-
minitest (5.
|
|
108
|
+
minitest (5.27.0)
|
|
106
109
|
mutex_m (0.3.0)
|
|
107
110
|
net-imap (0.4.9.1)
|
|
108
111
|
date
|
|
@@ -121,6 +124,7 @@ GEM
|
|
|
121
124
|
racc (~> 1.4)
|
|
122
125
|
nokogiri (1.16.0-x86_64-linux)
|
|
123
126
|
racc (~> 1.4)
|
|
127
|
+
ostruct (0.5.2)
|
|
124
128
|
parallel (1.24.0)
|
|
125
129
|
parser (3.3.0.4)
|
|
126
130
|
ast (~> 2.4.1)
|
|
@@ -162,34 +166,34 @@ GEM
|
|
|
162
166
|
rake (13.0.6)
|
|
163
167
|
regexp_parser (2.9.0)
|
|
164
168
|
rexml (3.2.6)
|
|
165
|
-
rspec (3.
|
|
166
|
-
rspec-core (~> 3.
|
|
167
|
-
rspec-expectations (~> 3.
|
|
168
|
-
rspec-mocks (~> 3.
|
|
169
|
+
rspec (3.13.2)
|
|
170
|
+
rspec-core (~> 3.13.0)
|
|
171
|
+
rspec-expectations (~> 3.13.0)
|
|
172
|
+
rspec-mocks (~> 3.13.0)
|
|
169
173
|
rspec-activemodel-mocks (1.2.0)
|
|
170
174
|
activemodel (>= 3.0)
|
|
171
175
|
activesupport (>= 3.0)
|
|
172
176
|
rspec-mocks (>= 2.99, < 4.0)
|
|
173
|
-
rspec-core (3.
|
|
174
|
-
rspec-support (~> 3.
|
|
175
|
-
rspec-expectations (3.5
|
|
177
|
+
rspec-core (3.13.6)
|
|
178
|
+
rspec-support (~> 3.13.0)
|
|
179
|
+
rspec-expectations (3.13.5)
|
|
176
180
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
177
|
-
rspec-support (~> 3.
|
|
181
|
+
rspec-support (~> 3.13.0)
|
|
178
182
|
rspec-its (1.3.0)
|
|
179
183
|
rspec-core (>= 3.0.0)
|
|
180
184
|
rspec-expectations (>= 3.0.0)
|
|
181
|
-
rspec-mocks (3.
|
|
185
|
+
rspec-mocks (3.13.8)
|
|
182
186
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
183
|
-
rspec-support (~> 3.
|
|
184
|
-
rspec-rails (
|
|
185
|
-
actionpack (>=
|
|
186
|
-
activesupport (>=
|
|
187
|
-
railties (>=
|
|
188
|
-
rspec-core (~> 3.
|
|
189
|
-
rspec-expectations (~> 3.
|
|
190
|
-
rspec-mocks (~> 3.
|
|
191
|
-
rspec-support (~> 3.
|
|
192
|
-
rspec-support (3.
|
|
187
|
+
rspec-support (~> 3.13.0)
|
|
188
|
+
rspec-rails (5.1.2)
|
|
189
|
+
actionpack (>= 5.2)
|
|
190
|
+
activesupport (>= 5.2)
|
|
191
|
+
railties (>= 5.2)
|
|
192
|
+
rspec-core (~> 3.10)
|
|
193
|
+
rspec-expectations (~> 3.10)
|
|
194
|
+
rspec-mocks (~> 3.10)
|
|
195
|
+
rspec-support (~> 3.10)
|
|
196
|
+
rspec-support (3.13.7)
|
|
193
197
|
rubocop (1.30.1)
|
|
194
198
|
parallel (~> 1.10)
|
|
195
199
|
parser (>= 3.1.0.0)
|
|
@@ -247,15 +251,19 @@ PLATFORMS
|
|
|
247
251
|
DEPENDENCIES
|
|
248
252
|
appraisal (~> 1.0.0)
|
|
249
253
|
base64
|
|
254
|
+
benchmark
|
|
250
255
|
bigdecimal
|
|
256
|
+
cgi
|
|
251
257
|
comma!
|
|
252
258
|
coveralls
|
|
253
259
|
drb
|
|
254
|
-
|
|
260
|
+
logger
|
|
261
|
+
minitest (= 5.27.0)
|
|
255
262
|
mutex_m
|
|
263
|
+
ostruct
|
|
256
264
|
rails (= 6.0.6)
|
|
257
265
|
rake (~> 13.0.1)
|
|
258
|
-
rspec (~> 3.
|
|
266
|
+
rspec (~> 3.13)
|
|
259
267
|
rspec-activemodel-mocks
|
|
260
268
|
rspec-its
|
|
261
269
|
rspec-rails
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ..
|
|
3
3
|
specs:
|
|
4
|
-
comma (
|
|
4
|
+
comma (5.0.0)
|
|
5
5
|
activesupport (>= 4.2.0)
|
|
6
6
|
csv (>= 3.3)
|
|
7
7
|
|
|
@@ -73,8 +73,10 @@ GEM
|
|
|
73
73
|
thor (>= 0.14.0)
|
|
74
74
|
ast (2.4.2)
|
|
75
75
|
base64 (0.3.0)
|
|
76
|
+
benchmark (0.5.0)
|
|
76
77
|
bigdecimal (4.1.2)
|
|
77
78
|
builder (3.2.4)
|
|
79
|
+
cgi (0.3.6)
|
|
78
80
|
concurrent-ruby (1.3.6)
|
|
79
81
|
coveralls (0.8.23)
|
|
80
82
|
json (>= 1.8, < 3)
|
|
@@ -94,6 +96,7 @@ GEM
|
|
|
94
96
|
i18n (1.14.8)
|
|
95
97
|
concurrent-ruby (~> 1.0)
|
|
96
98
|
json (2.7.1)
|
|
99
|
+
logger (1.7.0)
|
|
97
100
|
loofah (2.22.0)
|
|
98
101
|
crass (~> 1.0.2)
|
|
99
102
|
nokogiri (>= 1.12.0)
|
|
@@ -106,7 +109,7 @@ GEM
|
|
|
106
109
|
method_source (1.0.0)
|
|
107
110
|
mini_mime (1.1.5)
|
|
108
111
|
mini_portile2 (2.8.9)
|
|
109
|
-
minitest (5.
|
|
112
|
+
minitest (5.27.0)
|
|
110
113
|
mutex_m (0.3.0)
|
|
111
114
|
net-imap (0.4.9.1)
|
|
112
115
|
date
|
|
@@ -125,6 +128,7 @@ GEM
|
|
|
125
128
|
racc (~> 1.4)
|
|
126
129
|
nokogiri (1.16.0-x86_64-linux)
|
|
127
130
|
racc (~> 1.4)
|
|
131
|
+
ostruct (0.5.2)
|
|
128
132
|
parallel (1.24.0)
|
|
129
133
|
parser (3.3.0.4)
|
|
130
134
|
ast (~> 2.4.1)
|
|
@@ -166,34 +170,34 @@ GEM
|
|
|
166
170
|
rake (13.0.6)
|
|
167
171
|
regexp_parser (2.9.0)
|
|
168
172
|
rexml (3.2.6)
|
|
169
|
-
rspec (3.
|
|
170
|
-
rspec-core (~> 3.
|
|
171
|
-
rspec-expectations (~> 3.
|
|
172
|
-
rspec-mocks (~> 3.
|
|
173
|
+
rspec (3.13.0)
|
|
174
|
+
rspec-core (~> 3.13.0)
|
|
175
|
+
rspec-expectations (~> 3.13.0)
|
|
176
|
+
rspec-mocks (~> 3.13.0)
|
|
173
177
|
rspec-activemodel-mocks (1.2.0)
|
|
174
178
|
activemodel (>= 3.0)
|
|
175
179
|
activesupport (>= 3.0)
|
|
176
180
|
rspec-mocks (>= 2.99, < 4.0)
|
|
177
|
-
rspec-core (3.
|
|
178
|
-
rspec-support (~> 3.
|
|
179
|
-
rspec-expectations (3.
|
|
181
|
+
rspec-core (3.13.1)
|
|
182
|
+
rspec-support (~> 3.13.0)
|
|
183
|
+
rspec-expectations (3.13.3)
|
|
180
184
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
181
|
-
rspec-support (~> 3.
|
|
185
|
+
rspec-support (~> 3.13.0)
|
|
182
186
|
rspec-its (1.3.0)
|
|
183
187
|
rspec-core (>= 3.0.0)
|
|
184
188
|
rspec-expectations (>= 3.0.0)
|
|
185
|
-
rspec-mocks (3.
|
|
189
|
+
rspec-mocks (3.13.1)
|
|
186
190
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
187
|
-
rspec-support (~> 3.
|
|
188
|
-
rspec-rails (
|
|
189
|
-
actionpack (>=
|
|
190
|
-
activesupport (>=
|
|
191
|
-
railties (>=
|
|
192
|
-
rspec-core (~> 3.
|
|
193
|
-
rspec-expectations (~> 3.
|
|
194
|
-
rspec-mocks (~> 3.
|
|
195
|
-
rspec-support (~> 3.
|
|
196
|
-
rspec-support (3.
|
|
191
|
+
rspec-support (~> 3.13.0)
|
|
192
|
+
rspec-rails (6.1.5)
|
|
193
|
+
actionpack (>= 6.1)
|
|
194
|
+
activesupport (>= 6.1)
|
|
195
|
+
railties (>= 6.1)
|
|
196
|
+
rspec-core (~> 3.13)
|
|
197
|
+
rspec-expectations (~> 3.13)
|
|
198
|
+
rspec-mocks (~> 3.13)
|
|
199
|
+
rspec-support (~> 3.13)
|
|
200
|
+
rspec-support (3.13.1)
|
|
197
201
|
rubocop (1.30.1)
|
|
198
202
|
parallel (~> 1.10)
|
|
199
203
|
parser (>= 3.1.0.0)
|
|
@@ -250,15 +254,19 @@ PLATFORMS
|
|
|
250
254
|
DEPENDENCIES
|
|
251
255
|
appraisal (~> 1.0.0)
|
|
252
256
|
base64
|
|
257
|
+
benchmark
|
|
253
258
|
bigdecimal
|
|
259
|
+
cgi
|
|
254
260
|
comma!
|
|
255
261
|
coveralls
|
|
256
262
|
drb
|
|
257
|
-
|
|
263
|
+
logger
|
|
264
|
+
minitest (= 5.27.0)
|
|
258
265
|
mutex_m
|
|
266
|
+
ostruct
|
|
259
267
|
rails (= 6.1.7.6)
|
|
260
268
|
rake (~> 13.0.1)
|
|
261
|
-
rspec (~> 3.
|
|
269
|
+
rspec (~> 3.13)
|
|
262
270
|
rspec-activemodel-mocks
|
|
263
271
|
rspec-its
|
|
264
272
|
rspec-rails
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ..
|
|
3
3
|
specs:
|
|
4
|
-
comma (
|
|
4
|
+
comma (5.0.0)
|
|
5
5
|
activesupport (>= 4.2.0)
|
|
6
6
|
csv (>= 3.3)
|
|
7
7
|
|
|
@@ -79,8 +79,10 @@ GEM
|
|
|
79
79
|
thor (>= 0.14.0)
|
|
80
80
|
ast (2.4.2)
|
|
81
81
|
base64 (0.3.0)
|
|
82
|
+
benchmark (0.5.0)
|
|
82
83
|
bigdecimal (4.1.2)
|
|
83
84
|
builder (3.2.4)
|
|
85
|
+
cgi (0.3.6)
|
|
84
86
|
concurrent-ruby (1.3.6)
|
|
85
87
|
coveralls (0.8.23)
|
|
86
88
|
json (>= 1.8, < 3)
|
|
@@ -100,6 +102,7 @@ GEM
|
|
|
100
102
|
i18n (1.14.8)
|
|
101
103
|
concurrent-ruby (~> 1.0)
|
|
102
104
|
json (2.7.1)
|
|
105
|
+
logger (1.7.0)
|
|
103
106
|
loofah (2.22.0)
|
|
104
107
|
crass (~> 1.0.2)
|
|
105
108
|
nokogiri (>= 1.12.0)
|
|
@@ -112,7 +115,7 @@ GEM
|
|
|
112
115
|
method_source (1.0.0)
|
|
113
116
|
mini_mime (1.1.5)
|
|
114
117
|
mini_portile2 (2.8.9)
|
|
115
|
-
minitest (5.
|
|
118
|
+
minitest (5.27.0)
|
|
116
119
|
mutex_m (0.3.0)
|
|
117
120
|
net-imap (0.4.9.1)
|
|
118
121
|
date
|
|
@@ -131,6 +134,7 @@ GEM
|
|
|
131
134
|
racc (~> 1.4)
|
|
132
135
|
nokogiri (1.16.0-x86_64-linux)
|
|
133
136
|
racc (~> 1.4)
|
|
137
|
+
ostruct (0.5.2)
|
|
134
138
|
parallel (1.24.0)
|
|
135
139
|
parser (3.3.0.4)
|
|
136
140
|
ast (~> 2.4.1)
|
|
@@ -171,34 +175,34 @@ GEM
|
|
|
171
175
|
rake (13.0.6)
|
|
172
176
|
regexp_parser (2.9.0)
|
|
173
177
|
rexml (3.2.6)
|
|
174
|
-
rspec (3.
|
|
175
|
-
rspec-core (~> 3.
|
|
176
|
-
rspec-expectations (~> 3.
|
|
177
|
-
rspec-mocks (~> 3.
|
|
178
|
+
rspec (3.13.0)
|
|
179
|
+
rspec-core (~> 3.13.0)
|
|
180
|
+
rspec-expectations (~> 3.13.0)
|
|
181
|
+
rspec-mocks (~> 3.13.0)
|
|
178
182
|
rspec-activemodel-mocks (1.2.0)
|
|
179
183
|
activemodel (>= 3.0)
|
|
180
184
|
activesupport (>= 3.0)
|
|
181
185
|
rspec-mocks (>= 2.99, < 4.0)
|
|
182
|
-
rspec-core (3.
|
|
183
|
-
rspec-support (~> 3.
|
|
184
|
-
rspec-expectations (3.
|
|
186
|
+
rspec-core (3.13.1)
|
|
187
|
+
rspec-support (~> 3.13.0)
|
|
188
|
+
rspec-expectations (3.13.3)
|
|
185
189
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
186
|
-
rspec-support (~> 3.
|
|
190
|
+
rspec-support (~> 3.13.0)
|
|
187
191
|
rspec-its (1.3.0)
|
|
188
192
|
rspec-core (>= 3.0.0)
|
|
189
193
|
rspec-expectations (>= 3.0.0)
|
|
190
|
-
rspec-mocks (3.
|
|
194
|
+
rspec-mocks (3.13.1)
|
|
191
195
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
192
|
-
rspec-support (~> 3.
|
|
193
|
-
rspec-rails (
|
|
194
|
-
actionpack (>=
|
|
195
|
-
activesupport (>=
|
|
196
|
-
railties (>=
|
|
197
|
-
rspec-core (~> 3.
|
|
198
|
-
rspec-expectations (~> 3.
|
|
199
|
-
rspec-mocks (~> 3.
|
|
200
|
-
rspec-support (~> 3.
|
|
201
|
-
rspec-support (3.
|
|
196
|
+
rspec-support (~> 3.13.0)
|
|
197
|
+
rspec-rails (6.1.5)
|
|
198
|
+
actionpack (>= 6.1)
|
|
199
|
+
activesupport (>= 6.1)
|
|
200
|
+
railties (>= 6.1)
|
|
201
|
+
rspec-core (~> 3.13)
|
|
202
|
+
rspec-expectations (~> 3.13)
|
|
203
|
+
rspec-mocks (~> 3.13)
|
|
204
|
+
rspec-support (~> 3.13)
|
|
205
|
+
rspec-support (3.13.1)
|
|
202
206
|
rubocop (1.30.1)
|
|
203
207
|
parallel (~> 1.10)
|
|
204
208
|
parser (>= 3.1.0.0)
|
|
@@ -246,15 +250,19 @@ PLATFORMS
|
|
|
246
250
|
DEPENDENCIES
|
|
247
251
|
appraisal (~> 1.0.0)
|
|
248
252
|
base64
|
|
253
|
+
benchmark
|
|
249
254
|
bigdecimal
|
|
255
|
+
cgi
|
|
250
256
|
comma!
|
|
251
257
|
coveralls
|
|
252
258
|
drb
|
|
253
|
-
|
|
259
|
+
logger
|
|
260
|
+
minitest (= 5.27.0)
|
|
254
261
|
mutex_m
|
|
262
|
+
ostruct
|
|
255
263
|
rails (= 7.0.8)
|
|
256
264
|
rake (~> 13.0.1)
|
|
257
|
-
rspec (~> 3.
|
|
265
|
+
rspec (~> 3.13)
|
|
258
266
|
rspec-activemodel-mocks
|
|
259
267
|
rspec-its
|
|
260
268
|
rspec-rails
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ..
|
|
3
3
|
specs:
|
|
4
|
-
comma (
|
|
4
|
+
comma (5.0.0)
|
|
5
5
|
activesupport (>= 4.2.0)
|
|
6
6
|
csv (>= 3.3)
|
|
7
7
|
|
|
@@ -88,8 +88,10 @@ GEM
|
|
|
88
88
|
thor (>= 0.14.0)
|
|
89
89
|
ast (2.4.2)
|
|
90
90
|
base64 (0.3.0)
|
|
91
|
+
benchmark (0.5.0)
|
|
91
92
|
bigdecimal (4.1.2)
|
|
92
93
|
builder (3.2.4)
|
|
94
|
+
cgi (0.3.6)
|
|
93
95
|
concurrent-ruby (1.3.6)
|
|
94
96
|
connection_pool (2.5.5)
|
|
95
97
|
coveralls (0.8.23)
|
|
@@ -114,6 +116,7 @@ GEM
|
|
|
114
116
|
rdoc
|
|
115
117
|
reline (>= 0.4.2)
|
|
116
118
|
json (2.7.1)
|
|
119
|
+
logger (1.7.0)
|
|
117
120
|
loofah (2.22.0)
|
|
118
121
|
crass (~> 1.0.2)
|
|
119
122
|
nokogiri (>= 1.12.0)
|
|
@@ -125,7 +128,7 @@ GEM
|
|
|
125
128
|
marcel (1.0.2)
|
|
126
129
|
mini_mime (1.1.5)
|
|
127
130
|
mini_portile2 (2.8.5)
|
|
128
|
-
minitest (5.
|
|
131
|
+
minitest (5.27.0)
|
|
129
132
|
mutex_m (0.3.0)
|
|
130
133
|
net-imap (0.4.9.1)
|
|
131
134
|
date
|
|
@@ -142,6 +145,7 @@ GEM
|
|
|
142
145
|
racc (~> 1.4)
|
|
143
146
|
nokogiri (1.16.0-x86_64-linux)
|
|
144
147
|
racc (~> 1.4)
|
|
148
|
+
ostruct (0.5.2)
|
|
145
149
|
parallel (1.24.0)
|
|
146
150
|
parser (3.3.0.4)
|
|
147
151
|
ast (~> 2.4.1)
|
|
@@ -194,34 +198,34 @@ GEM
|
|
|
194
198
|
reline (0.4.2)
|
|
195
199
|
io-console (~> 0.5)
|
|
196
200
|
rexml (3.2.6)
|
|
197
|
-
rspec (3.
|
|
198
|
-
rspec-core (~> 3.
|
|
199
|
-
rspec-expectations (~> 3.
|
|
200
|
-
rspec-mocks (~> 3.
|
|
201
|
+
rspec (3.13.0)
|
|
202
|
+
rspec-core (~> 3.13.0)
|
|
203
|
+
rspec-expectations (~> 3.13.0)
|
|
204
|
+
rspec-mocks (~> 3.13.0)
|
|
201
205
|
rspec-activemodel-mocks (1.2.0)
|
|
202
206
|
activemodel (>= 3.0)
|
|
203
207
|
activesupport (>= 3.0)
|
|
204
208
|
rspec-mocks (>= 2.99, < 4.0)
|
|
205
|
-
rspec-core (3.
|
|
206
|
-
rspec-support (~> 3.
|
|
207
|
-
rspec-expectations (3.
|
|
209
|
+
rspec-core (3.13.1)
|
|
210
|
+
rspec-support (~> 3.13.0)
|
|
211
|
+
rspec-expectations (3.13.3)
|
|
208
212
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
209
|
-
rspec-support (~> 3.
|
|
213
|
+
rspec-support (~> 3.13.0)
|
|
210
214
|
rspec-its (1.3.0)
|
|
211
215
|
rspec-core (>= 3.0.0)
|
|
212
216
|
rspec-expectations (>= 3.0.0)
|
|
213
|
-
rspec-mocks (3.
|
|
217
|
+
rspec-mocks (3.13.1)
|
|
214
218
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
215
|
-
rspec-support (~> 3.
|
|
216
|
-
rspec-rails (
|
|
217
|
-
actionpack (>=
|
|
218
|
-
activesupport (>=
|
|
219
|
-
railties (>=
|
|
220
|
-
rspec-core (~> 3.
|
|
221
|
-
rspec-expectations (~> 3.
|
|
222
|
-
rspec-mocks (~> 3.
|
|
223
|
-
rspec-support (~> 3.
|
|
224
|
-
rspec-support (3.
|
|
219
|
+
rspec-support (~> 3.13.0)
|
|
220
|
+
rspec-rails (6.1.5)
|
|
221
|
+
actionpack (>= 6.1)
|
|
222
|
+
activesupport (>= 6.1)
|
|
223
|
+
railties (>= 6.1)
|
|
224
|
+
rspec-core (~> 3.13)
|
|
225
|
+
rspec-expectations (~> 3.13)
|
|
226
|
+
rspec-mocks (~> 3.13)
|
|
227
|
+
rspec-support (~> 3.13)
|
|
228
|
+
rspec-support (3.13.1)
|
|
225
229
|
rubocop (1.30.1)
|
|
226
230
|
parallel (~> 1.10)
|
|
227
231
|
parser (>= 3.1.0.0)
|
|
@@ -269,15 +273,19 @@ PLATFORMS
|
|
|
269
273
|
DEPENDENCIES
|
|
270
274
|
appraisal (~> 1.0.0)
|
|
271
275
|
base64
|
|
276
|
+
benchmark
|
|
272
277
|
bigdecimal
|
|
278
|
+
cgi
|
|
273
279
|
comma!
|
|
274
280
|
coveralls
|
|
275
281
|
drb
|
|
276
|
-
|
|
282
|
+
logger
|
|
283
|
+
minitest (= 5.27.0)
|
|
277
284
|
mutex_m
|
|
285
|
+
ostruct
|
|
278
286
|
rails (= 7.1.3)
|
|
279
287
|
rake (~> 13.0.1)
|
|
280
|
-
rspec (~> 3.
|
|
288
|
+
rspec (~> 3.13)
|
|
281
289
|
rspec-activemodel-mocks
|
|
282
290
|
rspec-its
|
|
283
291
|
rspec-rails
|
data/lib/comma/version.rb
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative 'spec_helper'
|
|
4
|
+
|
|
5
|
+
RSpec.describe 'comma.gemspec' do
|
|
6
|
+
it 'requires Ruby 3.1 or later' do
|
|
7
|
+
specification = Gem::Specification.load(File.expand_path('../comma.gemspec', __dir__))
|
|
8
|
+
|
|
9
|
+
expect(specification.required_ruby_version.to_s).to eq('>= 3.1')
|
|
10
|
+
end
|
|
11
|
+
end
|