From 74872109beb8280eebf7ad1edae23b3c356a1923 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juanjo=20Baz=C3=A1n?= Date: Fri, 12 Jul 2024 12:46:39 +0200 Subject: [PATCH] [ruby/psych] Unlimited line_width with -1 https://github.com/ruby/psych/commit/3b63a93dfc --- ext/psych/lib/psych.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ext/psych/lib/psych.rb b/ext/psych/lib/psych.rb index e96b752347..d227b1f225 100644 --- a/ext/psych/lib/psych.rb +++ b/ext/psych/lib/psych.rb @@ -479,6 +479,7 @@ module Psych # # Default: 2. # [:line_width] Max character to wrap line at. + # For unlimited line width use -1. # # Default: 0 (meaning "wrap at 81"). # [:canonical] Write "canonical" YAML form (very verbose, yet @@ -559,6 +560,7 @@ module Psych # # Default: 2. # [:line_width] Max character to wrap line at. + # For unlimited line width use -1. # # Default: 0 (meaning "wrap at 81"). # [:canonical] Write "canonical" YAML form (very verbose, yet