File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 282282 faraday (>= 1 , < 3 )
283283 sawyer (~> 0.9 )
284284 parallel (1.26.3 )
285- parser (3.3.7.0 )
285+ parser (3.3.7.1 )
286286 ast (~> 2.4.1 )
287287 racc
288288 pathutil (0.16.2 )
300300 regexp_parser (2.10.0 )
301301 rexml (3.4.0 )
302302 rouge (3.30.0 )
303- rubocop (1.71.1 )
303+ rubocop (1.71.2 )
304304 json (~> 2.3 )
305305 language_server-protocol (>= 3.17.0 )
306306 parallel (~> 1.10 )
Original file line number Diff line number Diff line change @@ -252,15 +252,15 @@ def convert_from_real_to_query_safe(string)
252252 duplicate = string . dup . to_s
253253
254254 UNSAFE_TO_SAFE_STRING_MAPPINGS . keys . each_with_object ( duplicate ) do |key , new_string |
255- new_string = new_string . gsub ( key , UNSAFE_TO_SAFE_STRING_MAPPINGS [ key ] )
255+ new_string . gsub ( key , UNSAFE_TO_SAFE_STRING_MAPPINGS [ key ] )
256256 end
257257end
258258
259259def convert_from_query_safe_to_real ( string )
260260 duplicate = string . dup . to_s
261261
262262 SAFE_TO_UNSAFE_STRING_MAPPINGS . keys . each_with_object ( duplicate ) do |key , new_string |
263- new_string = new_string . gsub ( key , SAFE_TO_UNSAFE_STRING_MAPPINGS [ key ] )
263+ new_string . gsub ( key , SAFE_TO_UNSAFE_STRING_MAPPINGS [ key ] )
264264 end
265265end
266266
You can’t perform that action at this time.
0 commit comments