File tree 4 files changed +34
-12
lines changed
4 files changed +34
-12
lines changed Original file line number Diff line number Diff line change 1
1
# Changes
2
2
3
+ * Gracefully handle formatting configs being set to ` nil ` instead of ` "" ` .
3
4
* Workaround another issue caused by conflicting versions of both ` json_pure ` and ` json ` being loaded.
4
5
5
6
### 2024-10-25 (2.7.4)
Original file line number Diff line number Diff line change @@ -46,15 +46,15 @@ def configure(opts)
46
46
opts . each do |key , value |
47
47
case key
48
48
when :indent
49
- self . indent = value
49
+ self . indent = value || ''
50
50
when :space
51
- self . space = value
51
+ self . space = value || ''
52
52
when :space_before
53
- self . space_before = value
53
+ self . space_before = value || ''
54
54
when :array_nl
55
- self . array_nl = value
55
+ self . array_nl = value || ''
56
56
when :object_nl
57
- self . object_nl = value
57
+ self . object_nl = value || ''
58
58
when :max_nesting
59
59
self . max_nesting = value || 0
60
60
when :depth
Original file line number Diff line number Diff line change @@ -239,13 +239,13 @@ def configure(opts)
239
239
end
240
240
241
241
# NOTE: If adding new instance variables here, check whether #generate should check them for #generate_json
242
- @indent = opts [ :indent ] if opts . key? ( :indent )
243
- @space = opts [ :space ] if opts . key? ( :space )
244
- @space_before = opts [ :space_before ] if opts . key? ( :space_before )
245
- @object_nl = opts [ :object_nl ] if opts . key? ( :object_nl )
246
- @array_nl = opts [ :array_nl ] if opts . key? ( :array_nl )
247
- @allow_nan = !!opts [ :allow_nan ] if opts . key? ( :allow_nan )
248
- @ascii_only = opts [ :ascii_only ] if opts . key? ( :ascii_only )
242
+ @indent = opts [ :indent ] || '' if opts . key? ( :indent )
243
+ @space = opts [ :space ] || '' if opts . key? ( :space )
244
+ @space_before = opts [ :space_before ] || '' if opts . key? ( :space_before )
245
+ @object_nl = opts [ :object_nl ] || '' if opts . key? ( :object_nl )
246
+ @array_nl = opts [ :array_nl ] || '' if opts . key? ( :array_nl )
247
+ @allow_nan = !!opts [ :allow_nan ] if opts . key? ( :allow_nan )
248
+ @ascii_only = opts [ :ascii_only ] if opts . key? ( :ascii_only )
249
249
@depth = opts [ :depth ] || 0
250
250
@buffer_initial_length ||= opts [ :buffer_initial_length ]
251
251
Original file line number Diff line number Diff line change @@ -167,6 +167,27 @@ def test_states
167
167
assert s [ :check_circular? ]
168
168
end
169
169
170
+ def test_falsy_state
171
+ object = { foo : [ 1 , 2 ] , bar : { egg : :spam } }
172
+ expected_json = JSON . generate (
173
+ object ,
174
+ array_nl : "" ,
175
+ indent : "" ,
176
+ object_nl : "" ,
177
+ space : "" ,
178
+ space_before : "" ,
179
+ )
180
+
181
+ assert_equal expected_json , JSON . generate (
182
+ object ,
183
+ array_nl : nil ,
184
+ indent : nil ,
185
+ object_nl : nil ,
186
+ space : nil ,
187
+ space_before : nil ,
188
+ )
189
+ end
190
+
170
191
def test_pretty_state
171
192
state = JSON . create_pretty_state
172
193
assert_equal ( {
You can’t perform that action at this time.
0 commit comments