From 88a8d4793473259b392241f1e2d20d39bd96b214 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Thu, 20 Jan 2022 18:34:19 +0000 Subject: use YAML.unsafe_load in Psych 4.x (Ruby 3.1+) Psych 4.x defaults to "nanny mode" to handle untrusted data. This causes breakage with since YAML references (aliases) emitted by dtas-player can't be handled by Psych clients under Ruby 3.1. Since dtas is single user and is a shell designed to run arbitrary code, favor the new YAML.unsafe_load API which behaves like the old YAML.load in Ruby <= 3.0. --- test/test_splitfx.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test_splitfx.rb') diff --git a/test/test_splitfx.rb b/test/test_splitfx.rb index cacda66..e3bd19d 100644 --- a/test/test_splitfx.rb +++ b/test/test_splitfx.rb @@ -39,7 +39,7 @@ class TestSplitfx < Testcase end def test_example - hash = YAML.load(File.read("examples/splitfx.sample.yml")) + hash = DTAS.yaml_load(File.read("examples/splitfx.sample.yml")) sfx = DTAS::SplitFX.new Dir.mktmpdir do |dir| Dir.chdir(dir) do -- cgit v1.2.3-24-ge0c7